1a81182b5c131b5e2360901efc68afca652ddd02
BOM-DAT/capacitor-dat/capacitor-dat.md
| ... | ... | @@ -176,6 +176,10 @@ The capacitor blocks DC from the source, letting only the AC audio signal pass. |
| 176 | 176 | - **100UF / 10V** |
| 177 | 177 | |
| 178 | 178 | |
| 179 | +## feed through capacitor |
|
| 180 | + |
|
| 181 | +657-PSM1-402Z-10B == Feed Through Capacitors 4000PF 10A PI - Surface Mount Low Pass Filters PSM Series |
|
| 182 | + |
|
| 179 | 183 | |
| 180 | 184 | |
| 181 | 185 | ## ref |
BOM-DAT/transistor-dat/FET-dat/FET-dat.md
| ... | ... | @@ -0,0 +1,12 @@ |
| 1 | + |
|
| 2 | +# FET-dat |
|
| 3 | + |
|
| 4 | + |
|
| 5 | +**Field-Effect Transistor ✅** |
|
| 6 | + |
|
| 7 | + |
|
| 8 | +FLL177ME == L-Band Medium & High Power GaAs FET |
|
| 9 | + |
|
| 10 | +The FLL177ME is a Power GaAs FET that is specifically designed to provide high power at L-Band frequencies with gain, linearity and efficiency superior to that of silicon devices. The performance in multitone environments for Class AB operation make them ideally suited for base station applications. This device is assembled in hermetic metal/ceramic package. |
|
| 11 | + |
|
| 12 | + |
BOM-DAT/transistor-dat/transistor-dat.md
| ... | ... | @@ -1,6 +1,10 @@ |
| 1 | 1 | |
| 2 | 2 | # transistor-dat |
| 3 | 3 | |
| 4 | + |
|
| 5 | +- [[FET-dat]] |
|
| 6 | + |
|
| 7 | + |
|
| 4 | 8 | common brand: Infineon |
| 5 | 9 | |
| 6 | 10 | - similar - [[mosfet-dat]] |
Chip-cn-dat/Espressif-dat/ESP32-dat/ESP32-HDK-dat/ESP32-Serial-dat/ESP32-Serial-dat.md
| ... | ... | @@ -12,4 +12,58 @@ pin 27 / 28 = IO 26 / 27 = UART2 |
| 12 | 12 | |
| 13 | 13 | - U0 = RXD0 / TXD0 |
| 14 | 14 | - U1 = SD2 / SD3 (can not use) |
| 15 | -- U2 = U2RXD = IO16, U2TXD = IO17 |
|
| ... | ... | \ No newline at end of file |
| 0 | +- U2 = U2RXD = IO16, U2TXD = IO17 |
|
| 1 | + |
|
| 2 | +ESP32 UARTs |
|
| 3 | + |
|
| 4 | +| UART | Default Pins | Notes | |
|
| 5 | +| ----- | ---------------------- | ------------------------------------------ | |
|
| 6 | +| UART0 | TX0=GPIO1, RX0=GPIO3 | Used for programming & Serial | |
|
| 7 | +| UART1 | TX1=GPIO10, RX1=GPIO9 | Often used for debug output | |
|
| 8 | +| UART2 | TX2=GPIO17, RX2=GPIO16 | Free for general use; pins can be remapped | |
|
| 9 | + |
|
| 10 | +software serial |
|
| 11 | + |
|
| 12 | + |
|
| 13 | + |
|
| 14 | + #include <SoftwareSerial.h> |
|
| 15 | + |
|
| 16 | + SoftwareSerial mySerial(16, 17); // RX, TX |
|
| 17 | + |
|
| 18 | + void setup() { |
|
| 19 | + Serial.begin(115200); |
|
| 20 | + mySerial.begin(9600); |
|
| 21 | + } |
|
| 22 | + |
|
| 23 | + void loop() { |
|
| 24 | + if (mySerial.available()) { |
|
| 25 | + String data = mySerial.readString(); |
|
| 26 | + Serial.println(data); |
|
| 27 | + } |
|
| 28 | + } |
|
| 29 | + |
|
| 30 | +Example: Using UART2 |
|
| 31 | + |
|
| 32 | + #define RX_PIN 16 |
|
| 33 | + #define TX_PIN 17 |
|
| 34 | + |
|
| 35 | + void setup() { |
|
| 36 | + Serial.begin(115200); // UART0 for debug |
|
| 37 | + Serial2.begin(9600, SERIAL_8N1, RX_PIN, TX_PIN); // UART2 |
|
| 38 | + } |
|
| 39 | + |
|
| 40 | + void loop() { |
|
| 41 | + if (Serial2.available()) { |
|
| 42 | + int c = Serial2.read(); |
|
| 43 | + Serial.print((char)c); // forward to USB serial |
|
| 44 | + } |
|
| 45 | + |
|
| 46 | + if (Serial.available()) { |
|
| 47 | + Serial2.write(Serial.read()); // send input from USB to UART2 |
|
| 48 | + } |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + |
|
| 52 | +## ref |
|
| 53 | + |
|
| 54 | +- [[ESP32-HDK-dat]] - [[ESP32-SDK-dat]] |
|
| ... | ... | \ No newline at end of file |
Chip-cn-dat/Espressif-dat/ESP32-dat/ESP32-dat.md
| ... | ... | @@ -24,7 +24,9 @@ and more at [[espressif-dat]] |
| 24 | 24 | |
| 25 | 25 | - [[ESP-SDK-dat]] - [[ESP32-SDK-dat]] |
| 26 | 26 | |
| 27 | -- [[ESP32-HDK-dat]] - [[ESP32-modules-dat]] - [[ESP32-board-dat]] |
|
| 27 | +- [[ESP32-HDK-dat]] - [[ESP32-serial-dat]] |
|
| 28 | + |
|
| 29 | +- [[ESP32-modules-dat]] - [[ESP32-board-dat]] |
|
| 28 | 30 | |
| 29 | 31 | |
| 30 | 32 | ## Boards and APP |
Chip-cn-dat/Espressif-dat/Espressif-dat.md
| ... | ... | @@ -7,7 +7,7 @@ |
| 7 | 7 | |
| 8 | 8 | - [[ESP8266-dat]] |
| 9 | 9 | |
| 10 | -- [[ESP8684-dat]] |
|
| 10 | +- [[ESP8684-dat]] - [[ESP8684-DEVKITC-dat]] |
|
| 11 | 11 | |
| 12 | 12 | - [[ESP8685-dat]] |
| 13 | 13 |
Home.md
| ... | ... | @@ -19,7 +19,7 @@ |
| 19 | 19 | |
| 20 | 20 | - [[Tech-DAT]] - [[display-dat]] - [[network-dat]] - [[usb-dat]] - [[interactive-dat]] |
| 21 | 21 | |
| 22 | -- [[power-dat]] - [[battery-dat]] - [[BMS-dat]] |
|
| 22 | +- [[power-dat]] - [[battery-dat]] - [[BMS-dat]] - [[ldo-dat]] |
|
| 23 | 23 | |
| 24 | 24 | - [[network-dat]] - [[RC-dat]] |
| 25 | 25 |
Network-dat/RC-dat/RC-TX-dat/ELRS-dat/ELRS-dat.md
| ... | ... | @@ -140,6 +140,8 @@ Load the Web UI on your browser using these addresses: |
| 140 | 140 | |
| 141 | 141 | http://10.0.0.1/ - If you have connected to the ExpressLRS RX Access Point |
| 142 | 142 | |
| 143 | +pass == expresslrs |
|
| 144 | + |
|
| 143 | 145 | ### Via button press |
| 144 | 146 | |
| 145 | 147 |  |
Network-dat/RC-dat/RC-dat.md
| ... | ... | @@ -11,8 +11,14 @@ |
| 11 | 11 | |
| 12 | 12 | - [[RC-code-dat]] |
| 13 | 13 | |
| 14 | -- [[RC-apps-dat]] |
|
| 14 | +- [[RC-apps-dat]] - [[rc-controller-dat]] |
|
| 15 | + |
|
| 16 | + |
|
| 17 | + |
|
| 18 | + |
|
| 15 | 19 | |
| 16 | 20 | ## ref |
| 17 | 21 | |
| 18 | -- [[network-dat]] |
|
| ... | ... | \ No newline at end of file |
| 0 | +- [[network-dat]] |
|
| 1 | + |
|
| 2 | +- [[rover-dat]] |
|
| ... | ... | \ No newline at end of file |
Network-dat/network-dat.md
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | |
| 5 | 5 | - [[RC-dat]] |
| 6 | 6 | |
| 7 | - |
|
| 7 | +- [[rf-switches-dat]] |
|
| 8 | 8 | |
| 9 | 9 | |
| 10 | 10 |
Network-dat/rf-switches-dat/rf-switches-dat.md
| ... | ... | @@ -0,0 +1,12 @@ |
| 1 | + |
|
| 2 | +# rf-switches-dat.md |
|
| 3 | + |
|
| 4 | +HMC241AQS16 == GaAs MMIC SP4T Non-Reflective Switch, DC - 3.5 GHz |
|
| 5 | + |
|
| 6 | +HMC253AQS24E == RF Switch IC CDMA SP8T 2.5 GHz 50Ohm 24-QSOP |
|
| 7 | + |
|
| 8 | +- HMC443LP4E |
|
| 9 | +- HMC441LP3E |
|
| 10 | +- HMC830LP6GE |
|
| 11 | +- HMC976LP3E |
|
| 12 | + |
Tech-dat/ADC-dat/ADC-dat.md
| ... | ... | @@ -62,6 +62,19 @@ |
| 62 | 62 | |
| 63 | 63 | - [[BAT54S-dat]] |
| 64 | 64 | |
| 65 | + |
|
| 66 | + |
|
| 67 | +## other |
|
| 68 | + |
|
| 69 | +- [ADS7046 12-Bit, 3-MSPS, Single-Ended Input, Small-Size, Low-Power SAR ADC](https://www.ti.com/lit/ds/symlink/ads7046.pdf?ts=1758413865175) |
|
| 70 | + |
|
| 71 | +- ADS1015 |
|
| 72 | + |
|
| 73 | +- AD9854ASTZ == CMOS 300 MSPS Quadrature Complete DDS == Data Acquisition ADCs/DACs - Specialized 200 MHZ QUADRATURE DDS SYNTHESIZER PBFre == |
|
| 74 | + |
|
| 75 | +- AD8561ARZ |
|
| 76 | + |
|
| 77 | + |
|
| 65 | 78 | ## ref |
| 66 | 79 | |
| 67 | 80 | - [[tech-dat]] |
Tech-dat/Interface-dat/RS232-DAT/RS232-DAT.md
| ... | ... | @@ -41,6 +41,14 @@ customized common: |
| 41 | 41 |  |
| 42 | 42 | |
| 43 | 43 | |
| 44 | + |
|
| 45 | +## more chip solutions |
|
| 46 | + |
|
| 47 | +- ADM3202ARNZ == 2/2 Transceiver Full RS232 16-SOIC |
|
| 48 | + |
|
| 49 | + |
|
| 50 | + |
|
| 51 | + |
|
| 44 | 52 | ## ref |
| 45 | 53 | |
| 46 | 54 | - [[DPR1084-dat]] - [[DPR1054-dat]] - [[DPR1073-dat]] |
Tech-dat/MCU-dat/mcu-dat.md
| ... | ... | @@ -105,6 +105,11 @@ Some versions (like ESP32-S3-WROOM-1U-N8R2) come with a built-in DC-DC converter |
| 105 | 105 | |
| 106 | 106 | |
| 107 | 107 | |
| 108 | +## old MCU |
|
| 109 | + |
|
| 110 | +- M16C/62P |
|
| 111 | + |
|
| 112 | + |
|
| 108 | 113 | ## ref |
| 109 | 114 | |
| 110 | 115 | - [[MCU]] |
| ... | ... | \ No newline at end of file |
Tech-dat/Optical-Coupler-DAT/Optical-Coupler-DAT.md
| ... | ... | @@ -46,6 +46,12 @@ The EL357 has a **wider operating temperature range**, which may be beneficial i |
| 46 | 46 | |
| 47 | 47 | - CPC5902G == Logic Output Optocouplers Dual Opto Isolated I2C Bus Repeater |
| 48 | 48 | |
| 49 | +- ILD206T |
|
| 50 | +- TLP2270 |
|
| 51 | +- ILD206T |
|
| 52 | + |
|
| 53 | + |
|
| 54 | + |
|
| 49 | 55 | |
| 50 | 56 | ## ref |
| 51 | 57 |
Tech-dat/amplifier-dat/amplifier-dat.md
| ... | ... | @@ -105,6 +105,9 @@ Active Low Pass filter with Amplification |
| 105 | 105 | - [Op-Amps – Analog Building Blocks](https://dronebotworkshop.com/op-amps/) |
| 106 | 106 | |
| 107 | 107 | |
| 108 | +## more chips |
|
| 109 | + |
|
| 110 | +- TL071CP |
|
| 108 | 111 | |
| 109 | 112 | |
| 110 | 113 | ## ref |
Tech-dat/clock-dat/clock-dat.md
| ... | ... | @@ -0,0 +1,30 @@ |
| 1 | + |
|
| 2 | +# clock-dat |
|
| 3 | + |
|
| 4 | +## clock generator |
|
| 5 | + |
|
| 6 | + |
|
| 7 | +[DSC400-1111Q0085KI1-ND == Clock Generator IC 170MHz 1 20-VFQFN Exposed Pad](https://clockworks.microchip.com/microchip/DatasheetsPDF/DSC400-1111Q0085.pdf) |
|
| 8 | + |
|
| 9 | + |
|
| 10 | +## prescaler |
|
| 11 | + |
|
| 12 | +2, 4, 8 1.1 GHz Low Power Prescaler with Stand‐By Mode == MC12093 |
|
| 13 | + |
|
| 14 | +A prescaler is an electronic circuit (or sometimes a counter/divider) that divides the frequency of an input signal by a fixed integer value before passing it on to the next stage. |
|
| 15 | + |
|
| 16 | +### 🔧 Key Idea |
|
| 17 | + |
|
| 18 | +If you feed in a high-frequency signal (say 1 GHz), and the prescaler is set to ÷10, the output will be 100 MHz. |
|
| 19 | + |
|
| 20 | +This makes it easier for slower digital circuits, timers, or microcontrollers to process signals that are otherwise too fast. |
|
| 21 | + |
|
| 22 | + |
|
| 23 | + |
|
| 24 | + |
|
| 25 | + |
|
| 26 | +## ref |
|
| 27 | + |
|
| 28 | +- [[microchip-dat]] |
|
| 29 | + |
|
| 30 | +- [[tech-dat]] |
|
| ... | ... | \ No newline at end of file |
Tech-dat/filter-dat/filter-dat.md
| ... | ... | @@ -0,0 +1,12 @@ |
| 1 | + |
|
| 2 | +# filter-dat |
|
| 3 | + |
|
| 4 | +- [[capacitor-dat]] |
|
| 5 | + |
|
| 6 | +FGDS-10A-50V == MIL-STD-461 EMI INPUT FILTER |
|
| 7 | + |
|
| 8 | +FGDS-10A-50V : up to 10A CURRENT |
|
| 9 | + |
|
| 10 | +- 10A EMI Filter Module |
|
| 11 | +- 9 to 50 VDC Input Range |
|
| 12 | +- MIL-STD-461D/E Compliant |
|
| ... | ... | \ No newline at end of file |
Tech-dat/tech-dat.md
| ... | ... | @@ -23,6 +23,8 @@ |
| 23 | 23 | |
| 24 | 24 | - [[app-dat]] - [[mechanics-dat]] |
| 25 | 25 | |
| 26 | +- [[clock-dat]] |
|
| 27 | + |
|
| 26 | 28 | |
| 27 | 29 | ## New Tech And Updates |
| 28 | 30 | |
| ... | ... | @@ -151,6 +153,10 @@ |
| 151 | 153 | |
| 152 | 154 | - [[USB-dat]] - [[USB-sys-dat]] |
| 153 | 155 | |
| 156 | +- [[amplifier-dat]] |
|
| 157 | + |
|
| 158 | + |
|
| 159 | + |
|
| 154 | 160 | ## Utilities |
| 155 | 161 | |
| 156 | 162 | - [[RTC-dat]] - [[buffer-dat]] |
app-dat/RC-apps-dat/RC-Controller-dat/RC-controller-dat.md
| ... | ... | @@ -16,6 +16,8 @@ Roll Pitch Yaw Throttle |
| 16 | 16 | |
| 17 | 17 | |
| 18 | 18 | |
| 19 | +- [[radiomaster-dat]] |
|
| 20 | + |
|
| 19 | 21 | - [[mobula8-dat]] |
| 20 | 22 | |
| 21 | 23 |
app-dat/RC-apps-dat/RC-supplier-dat/radiomaster-dat/radiomaster-dat.md
| ... | ... | @@ -3,10 +3,51 @@ |
| 3 | 3 | |
| 4 | 4 | basic information vist at - [[RC-controller-dat]] |
| 5 | 5 | |
| 6 | +- [[esp32-s3-dat]] - [[NWI1243-dat]] |
|
| 7 | + |
|
| 6 | 8 | ## all buttons |
| 7 | 9 | |
| 8 | 10 |  |
| 9 | 11 | |
| 12 | +### Default Stick Assignments |
|
| 13 | + |
|
| 14 | +RC template |
|
| 15 | + |
|
| 16 | +| Input | Type | default | modify | |
|
| 17 | +| ----- | --------- | -------- | ------ | |
|
| 18 | +| CH1 | Stick | Roll | | |
|
| 19 | +| CH2 | Stick | Pitch | | |
|
| 20 | +| CH3 | Stick | Yaw | | |
|
| 21 | +| CH4 | Stick | Throttle | | |
|
| 22 | +| SA | 2-pos | Arm/Aux | | |
|
| 23 | +| SB | 3-pos | Mode/Aux | | |
|
| 24 | +| SC | 3-pos | Mode/Aux | | |
|
| 25 | +| SD | Self-lock | Aux | | |
|
| 26 | +| SE | Momentary | Beep/Aux | | |
|
| 27 | +| S1 | Knob | Trim/Aux | | |
|
| 28 | + |
|
| 29 | + |
|
| 30 | + |
|
| 31 | + |
|
| 32 | +| Channel | Function | |
|
| 33 | +| ------- | ---------------- | |
|
| 34 | +| CH1 | Roll (Aileron) | |
|
| 35 | +| CH2 | Pitch (Elevator) | |
|
| 36 | +| CH3 | Yaw (Rudder) | |
|
| 37 | +| CH4 | Throttle | |
|
| 38 | + |
|
| 39 | + |
|
| 40 | + |
|
| 41 | +| Switch / Knob | Type | Typical Use | |
|
| 42 | +| ------------- | ------------------------------ | ------------------------------- | |
|
| 43 | +| SA | 2-position switch | Arming, auxiliary control | |
|
| 44 | +| SB | 3-position switch | Flight modes, auxiliary control | |
|
| 45 | +| SC | 3-position switch | Flight modes, auxiliary control | |
|
| 46 | +| SD | 2-position self-locking switch | Auxiliary function | |
|
| 47 | +| SE | Momentary (spring-loaded) | Beeper, auxiliary function | |
|
| 48 | +| S1 | Rotary potentiometer | Auxiliary function, trims | |
|
| 49 | + |
|
| 50 | + |
|
| 10 | 51 | |
| 11 | 52 | ## binding |
| 12 | 53 |
app-dat/RC-apps-dat/rover-dat/rover-dat.md
| ... | ... | @@ -104,4 +104,6 @@ subtotal == $77 |
| 104 | 104 | |
| 105 | 105 | - [[motor-rover-dat]] |
| 106 | 106 | |
| 107 | -- [[rc-car]] - [[maker]] |
|
| ... | ... | \ No newline at end of file |
| 0 | +- [[rc-car]] - [[maker]] |
|
| 1 | + |
|
| 2 | +- [[rover-v2]] |
|
| ... | ... | \ No newline at end of file |
mechanics-dat/mechanism-dat/mechanism-dat.md
| ... | ... | @@ -5,9 +5,12 @@ |
| 5 | 5 | |
| 6 | 6 | - [[trigger-dat]] |
| 7 | 7 | |
| 8 | - |
|
| 8 | +- spring |
|
| 9 | 9 | |
| 10 | 10 | |
| 11 | 11 | ## ref |
| 12 | 12 | |
| 13 | + |
|
| 14 | +https://www.notesandsketches.co.uk/Mechanisms_module.html |
|
| 15 | + |
|
| 13 | 16 | - [[mechanism]] |
| ... | ... | \ No newline at end of file |
power-dat/DC-dat/LDO-dat/LDO-dat.md
| ... | ... | @@ -88,6 +88,9 @@ SOT23-5 |
| 88 | 88 | |
| 89 | 89 | TPS7A89 == Small, Dual, 2-A, Low-Noise (3.8 μVRMS), LDO Voltage Regulator |
| 90 | 90 | |
| 91 | +MC7824BD2TG == Linear Voltage Regulators 24V 1A Positive |
|
| 92 | + |
|
| 93 | +Nisshinbo Micro Devices Inc. **NJM78L05UA-TE2** == Fixed Positive Standard Regulator, 5VBIPolar, PSSO3, MINI, PLASTIC, SOT-89, 3 PIN |
|
| 91 | 94 | |
| 92 | 95 | |
| 93 | 96 |