Board-dat/Board-DAT.md
... ...
@@ -178,6 +178,7 @@ Location
178 178
- A7670 [[NGS1131-DAT]]
179 179
- [[LAN8720-dat]] - [[NWI1199-DAT]]
180 180
181
+EC20 - 4G
181 182
- [[NGS1108-dat]]
182 183
183 184
SIMCOM
Board-dat/NGS/NGS1108-dat/NGS1108-dat.md
... ...
@@ -81,14 +81,14 @@ test with AT+CPIN?
81 81
82 82
## Code
83 83
84
-- Please check most docs at our bitbucket folder (link in tracking info email).
85
-
86
-
84
+- https://github.com/Edragon/quectel_4g
87 85
88 86
## ref
89 87
90
-- [[quectel-AT-dat]] - [[antenna-dat]] - [[quectel-GNSS-dat]]
88
+- [[quectel-AT-dat]] - [[antenna-dat]] - [[quectel-GNSS-dat]] - [[quectel-GPS-dat]]
91 89
90
+- [[ec20-dat]]
91
+
92 92
- [[NGS1108]] - [[ec20]]
93 93
94
-- [[logic-shifter-dat]]
... ...
\ No newline at end of file
0
+- [[power-dat]] - [[logic-shifter-dat]]
... ...
\ No newline at end of file
Chip-cn-dat/quectel-dat/ec20-dat/ec20-dat.md
... ...
@@ -36,4 +36,9 @@ EC20 R2.0 has built-in rich network protocols, integrates multiple industry stan
36 36
37 37
## Pins
38 38
39
-![](2024-03-13-17-30-57.png)
... ...
\ No newline at end of file
0
+![](2024-03-13-17-30-57.png)
1
+
2
+
3
+## Power supply
4
+
5
+- Vio = 1.8V
... ...
\ No newline at end of file
Chip-dat/TI-dat/TI-Power-dat/TI-power-dat.md
... ...
@@ -15,14 +15,6 @@
15 15
| Cfb | 75pf | |
16 16
| Co | 22uf x2 | |
17 17
18
-
19
-Vout = Vref * (R2/R3+1)
20
-
21
-for 5V = 0.6V * (100K / ? + 1 )
22
-
23
-100K / R3 = 5V/0.6V - 1 = 7.3333
24
-100K / R3 = 5.2V/0.6V - 1 = 7.6666
25
-
26
-R3 = 13.633K or below 13.3K for 5.2V
18
+- [[dcdc-bulk-output-dat]]
27 19
28 20
![](2024-04-29-16-00-08.png)
... ...
\ No newline at end of file
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32-dat/18-04-16-05-06-2023.png
... ...
Binary files /dev/null and b/SDK-dat/Arduino-IDE-DAT/Arduino-ESP32-dat/18-04-16-05-06-2023.png differ
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32-dat/52-27-16-05-01-2023.png
... ...
Binary files /dev/null and b/SDK-dat/Arduino-IDE-DAT/Arduino-ESP32-dat/52-27-16-05-01-2023.png differ
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32-dat/arduino-ESP32-log.md
... ...
@@ -0,0 +1,29 @@
1
+
2
+## Arduino ESP32 C3
3
+
4
+ ESP-ROM:esp32c3-api1-20210207
5
+ Build:Feb 7 2021
6
+ rst:0x1 (POWERON),boot:0xd (SPI_FAST_FLASH_BOOT)
7
+ SPIWP:0xee
8
+ mode:DIO, clock div:2
9
+ load:0x3fcd5810,len:0x438
10
+ load:0x403cc710,len:0x91c
11
+ load:0x403ce710,len:0x25b0
12
+ entry 0x403cc710
13
+ Testing LEDs ..
14
+ test ..
15
+ test ..
16
+ test ..
17
+ test ..
18
+ test ..
19
+ test ..
20
+ test ..
21
+ test ..
22
+ test ..
23
+ test ..
24
+
25
+ ....
26
+ Connected to 111
27
+ IP address: 192.168.8.197
28
+ MDNS responder started
29
+ HTTP server started
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32-dat/arduino-esp32-dat.md
... ...
@@ -0,0 +1,90 @@
1
+
2
+
3
+## Guide
4
+
5
+
6
+## installation
7
+
8
+https://docs.espressif.com/projects/arduino-esp32/en/latest/getting_started.html#supported-soc-s
9
+
10
+- install board json file: https://espressif.github.io/arduino-esp32/package_esp32_index.json
11
+
12
+## demo code collection
13
+
14
+- test code - https://github.com/Edragon/Arduino-ESP32
15
+- https://github.com/Edragon/Arduino-ESP32/tree/master/ESP32-ISO
16
+
17
+## Wiring
18
+
19
+- [[USB-TTL-dat]]
20
+
21
+
22
+## Parameters
23
+
24
+### ESP32
25
+
26
+![](52-27-16-05-01-2023.png)
27
+
28
+### ESP32-C3
29
+
30
+![](18-04-16-05-06-2023.png)
31
+
32
+
33
+| Setup | Params | Note | |
34
+| ------------------------------------ | ----------------------- | ----------------------------- | --- |
35
+| Board | ESP32C3 Dev Board | | |
36
+| Upload Speed | 921600 | | |
37
+| USB CDC on Boot | Disabled | | |
38
+| CPU Frequency | 160MHz / 80Mhz | | |
39
+| Flash Frequency | 80MHz / 40Mhz | ESP flash tool speed to 40MHz | |
40
+| Flash Mode | QIO / DIO | | |
41
+| Flash Size | 4MB | | |
42
+| Partition Scheme | Default 4MB with spiffs | (1.2MB APP / 1.5MB SPIFFS) | |
43
+| Core Debug Level | None | | |
44
+| Erase All Flash Before Sketch Upload | Enabled | | |
45
+
46
+
47
+some tips:
48
+- flash basic blink sketch into module first to erase all
49
+- 80Mhz + 40Mhz + QIO = OK
50
+- 80Mhz + 40Mhz + DIO = OK
51
+
52
+## version
53
+
54
+version 2.0.6 - 2022/2/3
55
+version 2.0.4
56
+
57
+## repository
58
+- https://github.com/espressif/arduino-esp32
59
+
60
+for [[NWI1126-dat]]: https://github.com/Edragon/Arduino-ESP32/tree/master/BSP/NWI1126
61
+
62
+## BSP demo code
63
+
64
+- https://github.com/Edragon/Arduino-ESP32
65
+
66
+includes
67
+- bluetooth / wifi tested with official examples
68
+
69
+
70
+- [[ESP-SDK-dat]]
71
+
72
+## Version
73
+
74
+- 2.0.14
75
+
76
+
77
+
78
+## Common error
79
+
80
+- cc1plus.exe: some warnings being treated as errors
81
+
82
+https://forum.arduino.cc/t/esp32-unused-variable-compile-error/1039022/15
83
+C:\Users\Administrator\AppData\Local\Arduino15\packages\esp32\hardware\esp32
84
+
85
+ To:
86
+ compiler.warning_flags=-w
87
+ compiler.warning_flags.none=-w
88
+ compiler.warning_flags.default=
89
+ compiler.warning_flags.more=-Wall
90
+ compiler.warning_flags.all=-Wall -Wextra
... ...
\ No newline at end of file
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32/18-04-16-05-06-2023.png
... ...
Binary files a/SDK-dat/Arduino-IDE-DAT/Arduino-ESP32/18-04-16-05-06-2023.png and /dev/null differ
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32/52-27-16-05-01-2023.png
... ...
Binary files a/SDK-dat/Arduino-IDE-DAT/Arduino-ESP32/52-27-16-05-01-2023.png and /dev/null differ
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32/arduino-ESP32-log.md
... ...
@@ -1,29 +0,0 @@
1
-
2
-## Arduino ESP32 C3
3
-
4
- ESP-ROM:esp32c3-api1-20210207
5
- Build:Feb 7 2021
6
- rst:0x1 (POWERON),boot:0xd (SPI_FAST_FLASH_BOOT)
7
- SPIWP:0xee
8
- mode:DIO, clock div:2
9
- load:0x3fcd5810,len:0x438
10
- load:0x403cc710,len:0x91c
11
- load:0x403ce710,len:0x25b0
12
- entry 0x403cc710
13
- Testing LEDs ..
14
- test ..
15
- test ..
16
- test ..
17
- test ..
18
- test ..
19
- test ..
20
- test ..
21
- test ..
22
- test ..
23
- test ..
24
-
25
- ....
26
- Connected to 111
27
- IP address: 192.168.8.197
28
- MDNS responder started
29
- HTTP server started
SDK-dat/Arduino-IDE-DAT/Arduino-ESP32/arduino-esp32-dat.md
... ...
@@ -1,90 +0,0 @@
1
-
2
-
3
-## Guide
4
-
5
-
6
-## installation
7
-
8
-https://docs.espressif.com/projects/arduino-esp32/en/latest/getting_started.html#supported-soc-s
9
-
10
-- install board json file: https://espressif.github.io/arduino-esp32/package_esp32_index.json
11
-
12
-## demo code collection
13
-
14
-- test code - https://github.com/Edragon/Arduino-ESP32
15
-- https://github.com/Edragon/Arduino-ESP32/tree/master/ESP32-ISO
16
-
17
-## Wiring
18
-
19
-- [[USB-TTL-dat]]
20
-
21
-
22
-## Parameters
23
-
24
-### ESP32
25
-
26
-![](52-27-16-05-01-2023.png)
27
-
28
-### ESP32-C3
29
-
30
-![](18-04-16-05-06-2023.png)
31
-
32
-
33
-| Setup | Params | Note | |
34
-| ------------------------------------ | ----------------------- | ----------------------------- | --- |
35
-| Board | ESP32C3 Dev Board | | |
36
-| Upload Speed | 921600 | | |
37
-| USB CDC on Boot | Disabled | | |
38
-| CPU Frequency | 160MHz / 80Mhz | | |
39
-| Flash Frequency | 80MHz / 40Mhz | ESP flash tool speed to 40MHz | |
40
-| Flash Mode | QIO / DIO | | |
41
-| Flash Size | 4MB | | |
42
-| Partition Scheme | Default 4MB with spiffs | (1.2MB APP / 1.5MB SPIFFS) | |
43
-| Core Debug Level | None | | |
44
-| Erase All Flash Before Sketch Upload | Enabled | | |
45
-
46
-
47
-some tips:
48
-- flash basic blink sketch into module first to erase all
49
-- 80Mhz + 40Mhz + QIO = OK
50
-- 80Mhz + 40Mhz + DIO = OK
51
-
52
-## version
53
-
54
-version 2.0.6 - 2022/2/3
55
-version 2.0.4
56
-
57
-## repository
58
-- https://github.com/espressif/arduino-esp32
59
-
60
-for [[NWI1126-dat]]: https://github.com/Edragon/Arduino-ESP32/tree/master/BSP/NWI1126
61
-
62
-## BSP demo code
63
-
64
-- https://github.com/Edragon/Arduino-ESP32
65
-
66
-includes
67
-- bluetooth / wifi tested with official examples
68
-
69
-
70
-- [[ESP-SDK-dat]]
71
-
72
-## Version
73
-
74
-- 2.0.14
75
-
76
-
77
-
78
-## Common error
79
-
80
-- cc1plus.exe: some warnings being treated as errors
81
-
82
-https://forum.arduino.cc/t/esp32-unused-variable-compile-error/1039022/15
83
-C:\Users\Administrator\AppData\Local\Arduino15\packages\esp32\hardware\esp32
84
-
85
- To:
86
- compiler.warning_flags=-w
87
- compiler.warning_flags.none=-w
88
- compiler.warning_flags.default=
89
- compiler.warning_flags.more=-Wall
90
- compiler.warning_flags.all=-Wall -Wextra
... ...
\ No newline at end of file
SDK-dat/Arduino-IDE-DAT/arduino-IDE-DAT.md
... ...
@@ -2,7 +2,7 @@
2 2
## demo code arduino
3 3
4 4
5
-- [[Arduino-Code-V1]]
5
+- [[arduino-code-v1-dat]]
6 6
- [[Arduino-Code-V2]]
7 7
8 8
SDK-dat/Arduino-IDE-DAT/arduino-code-v1-dat.md
... ...
@@ -0,0 +1,944 @@
1
+
2
+# arduino code v1
3
+
4
+- https://github.com/Edragon/Arduino-main
5
+
6
+
7
+## The category list of Sketchbook
8
+
9
+ .
10
+ |-74HC
11
+ |---74HC165
12
+ |-AD
13
+ |---ADS1115_test
14
+ |---MCP3421
15
+ |---PCF8591
16
+ |-Audio
17
+ |---mp3-player
18
+ |-----DFPlayer
19
+ |-------FullFunction
20
+ |-------GetStarted
21
+ |-----VS1003
22
+ |-Drive
23
+ |---DRV8833
24
+ |---DRV8871
25
+ |---L293
26
+ |---L298_simple
27
+ |---L298_speed_button_dir
28
+ |---Motorshield-StepperTest
29
+ |---TB6600
30
+ |-----acc-stepper
31
+ |-----acc-stepper-serial
32
+ |-----tb6600
33
+ |---arduino shields
34
+ |-----Blance_shield
35
+ |-----L298P
36
+ |-----L298P_motor_shield
37
+ |-------motor_shield_r3_2_brush_dc_auto_ino
38
+ |-----Stabilizer
39
+ |---quad
40
+ |-----init
41
+ |-ETH_LAN8720
42
+ |-FM
43
+ |---RDA5820
44
+ |-Input
45
+ |---button-read
46
+ |---interrupt-atmega2560-20
47
+ |-Interactive
48
+ |---05_display
49
+ |-----3.5'' LCD shield
50
+ |-------Example01-DisplayString
51
+ |---------DisplayString
52
+ |-------Example02-graphicstest
53
+ |---------graphicstest
54
+ |-------Example03-readpixel_kbv
55
+ |---------readpixel_kbv
56
+ |-------Example04-testcard_kbv
57
+ |---------testcard_kbv
58
+ |-------Example05-scroll_kbv
59
+ |---------scroll_kbv
60
+ |-------Example06-DisplayChinese
61
+ |---------DisplayChinese
62
+ |-------Example07-ShowBMP_320X480
63
+ |---------PIC
64
+ |---------ShowBMP
65
+ |-------Example08-GLUE_Demo_480x320
66
+ |---------GLUE_Demo_480x320
67
+ |-------Example09-TouchScreen_Calibr_kbv
68
+ |---------TouchScreen_Calibr_kbv
69
+ |-------Example10-Touch
70
+ |---------tftpaint
71
+ |-------Example11-Phonecal - 480X320
72
+ |---------phonecal
73
+ |-------Install libraries
74
+ |---------Adafruit_GFX
75
+ |---------Adafruit_TFTLCD
76
+ |-----------bitmaps
77
+ |-----------examples
78
+ |-------------graphicstest
79
+ |-------------rotationtest
80
+ |-------------tftbmp
81
+ |-------------tftbmp_shield
82
+ |-------------tftpaint
83
+ |-------------tftpaint_shield
84
+ |---------MCUFRIEND_kbv
85
+ |-----------bitmaps
86
+ |-----------examples
87
+ |-------------GLUE_Demo_320x240
88
+ |-------------GLUE_Demo_400x240
89
+ |-------------GLUE_Demo_480x320
90
+ |-------------GLUE_Demo_800x480
91
+ |-------------LCD_ID_readreg
92
+ |-------------TouchScreen_Calibr_kbv
93
+ |-------------Touch_shield_kbv
94
+ |-------------UTouch_Calibr_kbv
95
+ |-------------aspect_kbv
96
+ |-------------graphictest_kbv
97
+ |-------------graphictest_slim
98
+ |-------------readpixel_kbv
99
+ |-------------scroll_kbv
100
+ |-------------showBMP_kbv_as7
101
+ |-------------testcard_kbv
102
+ |---------TouchScreen
103
+ |-----------examples
104
+ |-------------touchscreendemo
105
+ |-------------touchscreendemoshield
106
+ |-------SDCard Exten Example
107
+ |---------CardInfo
108
+ |---------Datalogger
109
+ |---------DumpFile
110
+ |---------Files
111
+ |---------ReadWrite
112
+ |---------listfiles
113
+ |-----Serial7SegmentDisplay-master
114
+ |-------Production
115
+ |-------firmware
116
+ |---------Serial 7-Segment Display
117
+ |-----------Arduino_Examples
118
+ |-------------S7S_Example_I2C_Basic
119
+ |-------------S7S_Example_I2C_ChangeAddress
120
+ |-------------S7S_Example_I2C_Settings
121
+ |-------------S7S_Example_SPI_Basic
122
+ |-------------S7S_Example_SPI_Settings
123
+ |-------------S7S_Example_Serial_Basic
124
+ |-------------S7S_Example_Serial_Brightness
125
+ |-------------S7S_Example_Serial_ColonDots
126
+ |-------------S7S_Example_Serial_Mode_Change
127
+ |-------------S7S_Example_Serial_Predator
128
+ |-------------S7S_Example_Serial_Settings
129
+ |-------------S7S_Example_Serial_SoftwareReset
130
+ |-----------Serial_7_Segment_Display_Firmware
131
+ |-------hardware
132
+ |-----TM1650_4_key
133
+ |---08-LCD
134
+ |-----1.8-ST7735-demo
135
+ |-----1.8-ST7735-demo-2
136
+ |-----3.5inch_Arduino_Mega2560_ILI9486_V1.0
137
+ |-------Example01-UTFT_Demo_480x320
138
+ |---------UTFT_Demo_480x320
139
+ |-------Example02-UTFT_ViewFont
140
+ |---------UTFT_ViewFont
141
+ |-------Example03-UTFT_Buttons_Demo
142
+ |---------UTFT_Buttons_Demo_320x240
143
+ |-------Example04-UTouch_ButtonTest
144
+ |---------UTouch_ButtonTest
145
+ |-------Example05-UTFT_Textrotation_Demo
146
+ |---------UTFT_Textrotation_Demo
147
+ |-------Example06-UTFT_Buttons_Bitmap_Demo
148
+ |---------UTFT_Buttons_Bitmap_Demo
149
+ |-------Install libraries
150
+ |---------UTFT
151
+ |-----------Documentation
152
+ |-----------License
153
+ |-----------Tools
154
+ |-----------examples
155
+ |-------------Arduino (ARM) + Teensy
156
+ |---------------UTFT_Bitmap
157
+ |---------------UTFT_Bitmap_128x128
158
+ |---------------UTFT_CPLD_PageSwitching
159
+ |---------------UTFT_Demo_128x128_Serial
160
+ |---------------UTFT_Demo_160x128_Serial
161
+ |---------------UTFT_Demo_220x176
162
+ |---------------UTFT_Demo_220x176_Serial
163
+ |---------------UTFT_Demo_320x240
164
+ |---------------UTFT_Demo_320x240_Serial
165
+ |---------------UTFT_Demo_400x240
166
+ |---------------UTFT_Demo_480x272
167
+ |---------------UTFT_Demo_480x320
168
+ |---------------UTFT_Demo_800x480
169
+ |---------------UTFT_Rotate_Bitmap
170
+ |---------------UTFT_Textrotation_Demo
171
+ |---------------UTFT_ViewFont
172
+ |-------------Arduino (AVR)
173
+ |---------------UTFT_Bitmap
174
+ |---------------UTFT_Bitmap_128x128
175
+ |---------------UTFT_CPLD_PageSwitching
176
+ |---------------UTFT_Demo_128x128_Serial
177
+ |---------------UTFT_Demo_160x128_Serial
178
+ |---------------UTFT_Demo_220x176
179
+ |---------------UTFT_Demo_220x176_Serial
180
+ |---------------UTFT_Demo_320x240
181
+ |---------------UTFT_Demo_320x240_Serial
182
+ |---------------UTFT_Demo_400x240
183
+ |---------------UTFT_Demo_480x272
184
+ |---------------UTFT_Demo_480x320
185
+ |---------------UTFT_Demo_800x480
186
+ |---------------UTFT_Leonardo_Demo_320x240
187
+ |---------------UTFT_Rotate_Bitmap
188
+ |---------------UTFT_Textrotation_Demo
189
+ |---------------UTFT_ViewFont
190
+ |-------------TI LaunchPads (Energia)
191
+ |---------------UTFT_Bitmap
192
+ |---------------UTFT_Demo_160x128_Serial
193
+ |---------------UTFT_Demo_220x176
194
+ |---------------UTFT_Demo_220x176_Serial
195
+ |---------------UTFT_Demo_320x240
196
+ |---------------UTFT_Demo_400x240
197
+ |---------------UTFT_Demo_480x320
198
+ |---------------UTFT_Rotate_Bitmap
199
+ |---------------UTFT_Textrotation_Demo
200
+ |---------------UTFT_ViewFont
201
+ |-------------chipKit
202
+ |---------------UTFT_Bitmap
203
+ |---------------UTFT_Bitmap_128x128
204
+ |---------------UTFT_Demo_128x128_Serial
205
+ |---------------UTFT_Demo_160x128_Serial
206
+ |---------------UTFT_Demo_220x176
207
+ |---------------UTFT_Demo_220x176_Serial
208
+ |---------------UTFT_Demo_320x240
209
+ |---------------UTFT_Demo_320x240_Serial
210
+ |---------------UTFT_Demo_400x240
211
+ |---------------UTFT_Demo_480x272
212
+ |---------------UTFT_Demo_480x320
213
+ |---------------UTFT_Demo_800x480
214
+ |---------------UTFT_Rotate_Bitmap
215
+ |---------------UTFT_Textrotation_Demo
216
+ |---------------UTFT_ViewFont
217
+ |-----------hardware
218
+ |-------------arm
219
+ |-------------avr
220
+ |-------------pic32
221
+ |-----------tft_drivers
222
+ |-------------HX8357B
223
+ |-------------HX8357C
224
+ |-------------SPFD5420
225
+ |-------------cpld
226
+ |-------------hx8340b
227
+ |---------------8
228
+ |---------------s
229
+ |-------------hx8347a
230
+ |-------------hx8352a
231
+ |-------------hx8353c
232
+ |-------------ili9225
233
+ |-------------ili9325c
234
+ |-------------ili9325d
235
+ |---------------alt
236
+ |---------------default
237
+ |-------------ili9327
238
+ |-------------ili9341
239
+ |---------------16
240
+ |---------------s4p
241
+ |---------------s5p
242
+ |-------------ili9481
243
+ |-------------ili9486
244
+ |-------------ili9488
245
+ |-------------pcf8833
246
+ |-------------r61581
247
+ |-------------s1d19122
248
+ |-------------s6d0164
249
+ |-------------s6d1121
250
+ |-------------ssd1289
251
+ |-------------ssd1963
252
+ |---------------480
253
+ |---------------800
254
+ |---------------800alt
255
+ |-------------st7735
256
+ |---------------alt
257
+ |---------------std
258
+ |-------------st7735s
259
+ |---------UTFT_Buttons
260
+ |-----------hardware
261
+ |-------------arm
262
+ |-------------avr
263
+ |-------------pic32
264
+ |---------UTouch
265
+ |-----------hardware
266
+ |-------------arm
267
+ |-------------avr
268
+ |-------------pic32
269
+ |-------SDCard Exten Example
270
+ |---------CardInfo
271
+ |---------Datalogger
272
+ |---------DumpFile
273
+ |---------Files
274
+ |---------ReadWrite
275
+ |---------listfiles
276
+ |-----lcd-shield-16bit-pant-demo
277
+ |-----lcd-shield-8bit-image-demo
278
+ |-----lcd-shield-8bit-pant-demo
279
+ |-----lcd-shield-8bit-touch-demo
280
+ |-----mega-shield-3.2-example
281
+ |-----touch-draw-3.2-400x240-LCD
282
+ |-----touch-draw-3.2inch-LCD
283
+ |-----touch-draw-LCD
284
+ |---5050RGBLED
285
+ |---EDL
286
+ |-----EDL70
287
+ |---ILE1008
288
+ |-----ILE1008-test
289
+ |---LEDs
290
+ |-----ColorPalette
291
+ |-----RGB_analogwrite
292
+ |-----RGB_analogwrite_ESP_LIGHT
293
+ |---PWM
294
+ |-----Fading
295
+ |---TM
296
+ |-----TM1650-Buttons_clicks
297
+ |-----TM1650_example01
298
+ |-----TM1650_setSegments
299
+ |---e-ink
300
+ |-----e-ink-2.13
301
+ |-----epd2in13-demo
302
+ |-----epd2in9-demo
303
+ |---seg_display-74HC595
304
+ |-----2x4-seg-display
305
+ |-----74HC595_header
306
+ |-----display_header
307
+ |-----display_header_2
308
+ |-Interface
309
+ |---11-Interface
310
+ |-----AT
311
+ |-----HT16213
312
+ |-----HT16214
313
+ |-----PCF
314
+ |-----PCF_8574_2
315
+ |-----SD
316
+ |---17-audio
317
+ |-----uda1334
318
+ |---18-protocol
319
+ |-----can-receive-2
320
+ |-----can-send-2
321
+ |---19-DACADC
322
+ |-----TLC5615
323
+ |-----TM8211-PT8211
324
+ |---I2C
325
+ |-----IIC-DS1307
326
+ |-----IIC-MISC
327
+ |-------OLED-12832
328
+ |-----IIC_PCF8591
329
+ |-----MultiSpeedI2CScanner
330
+ |-----iic-eeprom_read
331
+ |-----iic_scan
332
+ |-----iic_scan_2
333
+ |-------iic_scan
334
+ |-----iic_scan_3
335
+ |---RS485
336
+ |-----RS485_receive
337
+ |-----RS485_receive2
338
+ |-----RS485_send
339
+ |-----RS485_send2
340
+ |---Serial
341
+ |-----Serial-data-save
342
+ |-------Serial-read_32
343
+ |-------Serial-read_end_stop
344
+ |-------Serial-simple_read
345
+ |-------Serial-test
346
+ |-------TDS16
347
+ |-------TDS16-2
348
+ |-------star-marker-fix-len
349
+ |-------start-end-marker-bytes
350
+ |-----hex-read-all
351
+ |-----serial-basic
352
+ |-------AT-echo-test
353
+ |-------Software_serial_print_hex
354
+ |-------mutiple-serial-1
355
+ |-------serial-simple-print
356
+ |-------serial_read-write
357
+ |-------software-serial-print
358
+ |-------software_serial_example1
359
+ |-------uart_debug
360
+ |-------wrong-data
361
+ |-----serial-find
362
+ |-------serial-find
363
+ |-------serial-find-2
364
+ |---fastHaverSine
365
+ |---freq-pwm
366
+ |-----RGB5050-fade
367
+ |-----RGB5050-loop
368
+ |-----atmega2560-flow
369
+ |-----frequency-1
370
+ |-----frequency-read
371
+ |-----test-1
372
+ |-----test-2
373
+ |-----test-3
374
+ |-----test-4
375
+ |---oneWireSearch
376
+ |---softwareserial1
377
+ |-NFC
378
+ |---readMifare
379
+ |-Other
380
+ |---arduino_reset
381
+ |---mills
382
+ |-RF
383
+ |---02_LORA
384
+ |-----Arduino_LoRa_GPS
385
+ |-----Arduino_LoRa_Gateway
386
+ |-----Arduino_LoRa_Gateway_1_4
387
+ |-----Arduino_LoRa_Generic_Sensor
388
+ |-----Arduino_LoRa_InteractiveDevice
389
+ |-----Arduino_LoRa_Ping_Pong
390
+ |-----Arduino_LoRa_Radiohead_Example
391
+ |-----Arduino_LoRa_Simple_BeaconCollar
392
+ |-----Arduino_LoRa_Simple_SoilHum
393
+ |-----Arduino_LoRa_Simple_temp
394
+ |-----Arduino_LoRa_SoilHum
395
+ |-----Arduino_LoRa_temp
396
+ |-----Arduino_LoRa_ucamII
397
+ |-----DAR1050-1
398
+ |-----LoRaDuplex-arduino_lora
399
+ |-----Lora_TestFlash
400
+ |-----SX1262_TX
401
+ |-----SX126x_Transmit
402
+ |-----rf69_reliable_datagram_client
403
+ |-----rf69_reliable_datagram_server
404
+ |-----rf95_reliable_datagram_client
405
+ |-----rf95_reliable_datagram_server
406
+ |-----sx1278_rf95_server
407
+ |---06_NRF24
408
+ |-----RH_C
409
+ |-----RH_S
410
+ |-----nrf24duino_start
411
+ |-----radiolib_RX
412
+ |-----radiolib_TX
413
+ |---10-GPS
414
+ |-----Arduino ATGM338H
415
+ |-------1.测试例程
416
+ |---------GPS_UNO_Test
417
+ |-------2.解析例程
418
+ |---------GPS_UNO
419
+ |-------3.扩展例程
420
+ |---------UNO+GPS+TFT1.44彩屏显示
421
+ |-----------GPS_UNO
422
+ |-----GPS_SD_logger
423
+ |-----GPS_SOFT-UART
424
+ |-----GPS_UART
425
+ |-----arduino_GPS
426
+ |-------neo6_reader
427
+ |---14-Wireless
428
+ |-----JDY-08
429
+ |-----PS2-ED1
430
+ |-----PS2-LGT8F328P-SSOP
431
+ |-----Press-Blink
432
+ |---15-2345G
433
+ |-----SIM7020E
434
+ |---16-RFID
435
+ |-----125KHZ
436
+ |-------EL-125
437
+ |---------EL125-hardware-1
438
+ |---------EL125-software-1
439
+ |---------EL125-software-2
440
+ |-------EM4100
441
+ |-----HF
442
+ |---ASK
443
+ |-----RECV
444
+ |-----TRN
445
+ |---Arduino-AT
446
+ |-----AT
447
+ |-----GSM-Software-AT-test
448
+ |-----GSM-Software-AT-test-2
449
+ |---Arduino_SIM800
450
+ |-----GSM Library
451
+ |-------GSM_Shield
452
+ |---------examples
453
+ |-----------GSM_Shield_Call
454
+ |-----------GSM_Shield_LibVer
455
+ |-----------GSM_Shield_Reg
456
+ |-----------GSM_Shield_Test
457
+ |-----LCD5110_Graph-0022
458
+ |-------LCD5110_Graph
459
+ |---------examples
460
+ |-----------LCD5110_Graph_Demo
461
+ |-----------LCD5110_Scrolling_Text
462
+ |-----------LCD5110_TinyFont_View
463
+ |-----NewSoftSerial
464
+ |-------examples
465
+ |---------MegaNewSoftSerialTest
466
+ |---------NewSoftSerialTest
467
+ |---------TwoNSSTest
468
+ |---BC95
469
+ |---BC95-good
470
+ |---GPS
471
+ |---NGS1072
472
+ |-----NGS1072
473
+ |-----NGS1072-2
474
+ |-----NGS1072-3
475
+ |-----NGS1072-4
476
+ |-----NGS1072-5
477
+ |-----NGS1072-GPRS-MQTT-RELAY-2
478
+ |-------PubSubClient
479
+ |---------examples
480
+ |-----------mqtt_auth
481
+ |-----------mqtt_basic
482
+ |-----------mqtt_esp8266
483
+ |-----------mqtt_publish_in_callback
484
+ |-----------mqtt_reconnect_nonblocking
485
+ |-----------mqtt_stream
486
+ |---------src
487
+ |---------tests
488
+ |-----------src
489
+ |-------------lib
490
+ |-----------testcases
491
+ |-------TinyGSM
492
+ |---------examples
493
+ |-----------AllFunctions
494
+ |-----------BlynkClient
495
+ |-----------FileDownload
496
+ |-----------HttpClient
497
+ |-----------HttpsClient
498
+ |-----------MqttClient
499
+ |-----------WebClient
500
+ |---------extras
501
+ |---------tools
502
+ |-----------AT_Debug
503
+ |-----------Diagnostics
504
+ |-----------FactoryReset
505
+ |-----------test_build
506
+ |-----NGS1072-GPRS-MQTT-RELAY-4
507
+ |-----NGS1072-tiny_GSM
508
+ |-------PubSubClient
509
+ |---------examples
510
+ |-----------mqtt_auth
511
+ |-----------mqtt_basic
512
+ |-----------mqtt_esp8266
513
+ |-----------mqtt_publish_in_callback
514
+ |-----------mqtt_reconnect_nonblocking
515
+ |-----------mqtt_stream
516
+ |---------src
517
+ |---------tests
518
+ |-----------src
519
+ |-------------lib
520
+ |-----------testcases
521
+ |-------TinyGSM
522
+ |---------examples
523
+ |-----------AllFunctions
524
+ |-----------BlynkClient
525
+ |-----------FileDownload
526
+ |-----------HttpClient
527
+ |-----------HttpsClient
528
+ |-----------MqttClient
529
+ |-----------WebClient
530
+ |---------extras
531
+ |---------tools
532
+ |-----------AT_Debug
533
+ |-----------Diagnostics
534
+ |-----------FactoryReset
535
+ |-----------test_build
536
+ |-----basic-blink
537
+ |---SIM5360E
538
+ |---SIM7020
539
+ |---menu_test
540
+ |---sim868-2
541
+ |---sim868-3f
542
+ |-RTC
543
+ |---DS1307-setTimeAndSqw
544
+ |-SVC
545
+ |---SVC1039
546
+ |-----SVC1039-v1
547
+ |-----SVC1039-v2
548
+ |-Sensor
549
+ |---04_sensor
550
+ |-----8CH line finder
551
+ |-------QTRSensors
552
+ |---------examples
553
+ |-----------QTRAExample
554
+ |-----------QTRARawValuesExample
555
+ |-----------QTRRCExample
556
+ |-----------QTRRCRawValuesExample
557
+ |-------robot
558
+ |-------robot1
559
+ |-------sketch_mar03a
560
+ |-------sketch_mar21a
561
+ |-------sketch_mar26a
562
+ |-------sketch_nov08a
563
+ |-------寻线小车3
564
+ |---------sketch_mar03a
565
+ |-----Color Sensor
566
+ |-----IR forwarder
567
+ |-------hex_write
568
+ |-------irForward
569
+ |-------r2
570
+ |-------string_pratice
571
+ |-----IRrecord
572
+ |-----IRrecord-demo_test
573
+ |-----RCWL-0516
574
+ |-----Thermal_Printer
575
+ |-------Firmware
576
+ |---------ThermalPrinter_Example
577
+ |-------QRprint
578
+ |---------QRprint
579
+ |-----------examples
580
+ |-------------example
581
+ |-----Turbidity sensor
582
+ |-------TS300-1
583
+ |-------TS300-2
584
+ |-------ZDMK_AD
585
+ |-------ZDMK_IO
586
+ |-----arduino touch pad touch sensor
587
+ |-----max9812
588
+ |-----sensor_pack
589
+ |---DHT_Simulator
590
+ |---EDW-01
591
+ |---HD710
592
+ |---HLW8012
593
+ |-----SonoffPOWV2
594
+ |-----basic
595
+ |-----library
596
+ |-----pulse-read
597
+ |-----remote_debug
598
+ |---HLW8032
599
+ |-----1602_out
600
+ |-----V2
601
+ |-------parse-dat-1
602
+ |-------parse-data-v1
603
+ |-------parse-data-v2
604
+ |-------raw_read
605
+ |-------raw_read-2
606
+ |-------raw_read-3
607
+ |-------raw_read-4
608
+ |-----main
609
+ |-----test1
610
+ |-----volt_cal
611
+ |---KX023-1025
612
+ |---Light Sensor
613
+ |-----BH1750
614
+ |-------AVR_GY-30
615
+ |---------AVR_GY-30
616
+ |-------BH1750_arduino
617
+ |-------C8051F340
618
+ |-------STC_GY-30
619
+ |---------STC_BH1750
620
+ |-----BH1750_0x23
621
+ |-----SFE_TSL2561
622
+ |-------examples
623
+ |---------SFE_TSL2561_example
624
+ |-----SFE_TSL2561-2
625
+ |-------examples
626
+ |---------SparkFunTSL2561Example
627
+ |-------src
628
+ |-----TEMT6000
629
+ |-----TSL2561
630
+ |---MAX31855
631
+ |-----MAX31855-LCD
632
+ |-----max31855_demo0
633
+ |-----max31855_tutorial_basic
634
+ |---MAX4466
635
+ |-----max4466_arduino
636
+ |---TF-TDS
637
+ |-----TF-TDS-01
638
+ |-----TF-TDS-01-atmega2560
639
+ |---ap3216
640
+ |---motion
641
+ |-----MPU-6500
642
+ |---passive-buzzer
643
+ |---tempearture
644
+ |-----AM2322_0x5c
645
+ |-----DS18B20
646
+ |-----bme280test
647
+ |-----bme280test-electrodraong-version
648
+ |-----bmp180_0x77
649
+ |-WCH
650
+ |---CH423
651
+ |-analog
652
+ |---ReadAnalogVoltage
653
+ |-arduino-as-isp-target
654
+ |-board-bsp
655
+ |---CUS
656
+ |-----caffee-machine
657
+ |-------ac_detect
658
+ |-------ac_detect-2
659
+ |-------full-test
660
+ |-------relay-1
661
+ |-------serial
662
+ |-------serial-2
663
+ |-------serial-3
664
+ |-------serial-commands-feedback-1
665
+ |---DAR
666
+ |-----DAR1050-ED-UNO
667
+ |-------ReceiveDemo
668
+ |-----DAR1060-atmega4808
669
+ |-------atmega4808
670
+ |-------serial
671
+ |-------serial-print-find
672
+ |-----DAR1064
673
+ |-------Blink
674
+ |-------Button
675
+ |---DAS
676
+ |-----DAS1033_card_shield
677
+ |-----DAS1040-GPS-Shield
678
+ |---DVA
679
+ |-----loraduino
680
+ |-------SPIFlash_Detect
681
+ |-------SPIFlash_ReadWrite
682
+ |-------SPIFlash_init
683
+ |-------blink-d7
684
+ |-------customer-loraduino
685
+ |-------rf95_reliable_datagram_client
686
+ |---EDAtiny_test
687
+ |---EMS
688
+ |-----EMS-5110
689
+ |-----EMS-SPI_LCD
690
+ |-----EMS-advanced
691
+ |---ILE1073-25W-LED-Panel
692
+ |-----Fade-test
693
+ |-----attiny-202-btn
694
+ |---IR-shield
695
+ |-----IRrecvDumpV2
696
+ |---MISC board demo code
697
+ |-----1. HelloWorld实验
698
+ |-------lesson1
699
+ |-----10.四位共阳数码管实验验动
700
+ |-------LESSON20
701
+ |-----11.按键数码管累加实验
702
+ |-------LESSON21
703
+ |---------LESSON21
704
+ |-----12.蜂鸣器实验
705
+ |-------sketch_may30a
706
+ |-----13.数码管电压表(数码管显示)
707
+ |-------VOLT
708
+ |-----14 温度传感器LM35实验
709
+ |-------LESSON22
710
+ |-----15.数码管显示读取模拟值
711
+ |-------sketch_jul14a
712
+ |-----16.模拟口测电压 电压表
713
+ |-------sketch_may31a
714
+ |-----16.温度传感器LM35实验(数码管显示)
715
+ |-------LESSON23
716
+ |---------VOLT
717
+ |-----17.延时法驱动舵机
718
+ |-------sketch_may30a
719
+ |-----18.库函数驱动舵机(电位器调角度)
720
+ |-------Knob
721
+ |-----19.DS18B20显示温度 串口发送
722
+ |-------sketch_jul14b
723
+ |-----2.LED闪烁
724
+ |-------lesson2
725
+ |-----20.DS18B20 (数码管显示)温度
726
+ |-------sketch_jun21a
727
+ |-----207.超声波测距程序
728
+ |-------sketch_may31a
729
+ |-----21.EEPORM读写 数码管记录机器使用次数
730
+ |-------EEPROM
731
+ |-----22.红外解码程序显示码值
732
+ |-------sketch_jun05a
733
+ |-----23.红外控制 LED开关
734
+ |-------sketch_jun05a
735
+ |-----24.红外人流计数
736
+ |-------sketch_jul16a
737
+ |-----25.蓝牙控制LED亮度
738
+ |-------sketch_may30a
739
+ |-----26.步进电机实验
740
+ |-------LESSON38
741
+ |---------LESSON38
742
+ |-----27.虚拟鼠标实验
743
+ |-------LESSON39
744
+ |-----3.广告灯程序
745
+ |-------lesson3
746
+ |-----4.按键实验
747
+ |-------sketch_may30a
748
+ |-----5.按键控制LED实验
749
+ |-------lesson4
750
+ |-----6.电位器实验
751
+ |-------lesson5
752
+ |-----7.电位器调LED亮度
753
+ |-------LED__
754
+ |-----8.二路PWM调光(呼吸灯)
755
+ |-------AnalogWriteMega
756
+ |-----9.三基色LED实验
757
+ |-------LESSON17
758
+ |---arduino-triac-shield
759
+ |---arduino_motor_shield
760
+ |---atmega2560
761
+ |-----AT
762
+ |-----AT-echo-test
763
+ |---atmega4808
764
+ |-----serial2-alt
765
+ |---attiny404-blink
766
+ |---digispark
767
+ |---edatiny
768
+ |-----Blink
769
+ |---loraduino
770
+ |-----rf95_reliable_datagram_client
771
+ |---purifier
772
+ |-----01-basic
773
+ |-----01-motor-test
774
+ |-----01-motor-test-2
775
+ |-----02-AT-test
776
+ |-----02-sensor-analog
777
+ |-----03-motor-test
778
+ |-----bk-1
779
+ |-----peripherals
780
+ |-----relay-on
781
+ |-----tap_6
782
+ |-caffee-card2
783
+ |---FW_CF1_001
784
+ |---FW_CF1_EEP
785
+ |-data
786
+ |---bk
787
+ |-----1
788
+ |-----2
789
+ |-----SD
790
+ |-----String
791
+ |-------string-hex-array
792
+ |-----eeprom-1
793
+ |-----eeprom-clean
794
+ |-----eeprom-read
795
+ |-----eeprom-read-2
796
+ |-----eeprom-write
797
+ |-----hex_1
798
+ |-----int_array_to_hex
799
+ |-----serial-hex-1
800
+ |-----serial-hex-2
801
+ |-----serial-hex-3
802
+ |---eeprom-page
803
+ |---serial-final
804
+ |-----serial-hex-4
805
+ |-display_text
806
+ |-dva1007_loraduino2
807
+ |-gpio
808
+ |---TRIAC-D4D5
809
+ |-hardware
810
+ |---LGT
811
+ |-----avr
812
+ |-------bootloaders
813
+ |---------lgt8f88a
814
+ |---------lgt8fx8ds20
815
+ |---------lgt8fx8e
816
+ |---------lgt8fx8p
817
+ |-------cores
818
+ |---------lgt8f
819
+ |-------libraries
820
+ |---------E2PROM
821
+ |-----------examples
822
+ |-------------eeprom_clear
823
+ |-------------eeprom_read
824
+ |-------------eeprom_write
825
+ |---------Larduino_HSPExamples
826
+ |-----------examples
827
+ |-------------lgt8f328p_qfp48_case00
828
+ |-------------lgt8f328p_qfp48_case01
829
+ |-------------lgt8f328p_qfp48_case02
830
+ |-------------lgt8f328p_sysclock
831
+ |-------------lgt8fx8p_fastio
832
+ |-------------lgt8fx8p_pwm_d1d2_duo0
833
+ |-------------lgt8fx8p_pwm_d1d2_solo_fast
834
+ |-------------lgt8fx8p_pwm_d24d25_duo1
835
+ |-------------lgt8fx8p_pwm_d24d25_solo
836
+ |-------------lgt8fx8p_pwm_d24d25_solo_fast
837
+ |-------------lgt8fx8p_pwm_d24d25_solo_slow
838
+ |-------------lgt8fx8p_pwm_d3d11_solo
839
+ |-------------lgt8fx8p_pwm_d5d6_duo0
840
+ |-------------lgt8fx8p_pwm_d5d6_duo1_boost
841
+ |-------------lgt8fx8p_pwm_d5d6_solo
842
+ |-------------lgt8fx8p_pwm_d5d6_turnoff
843
+ |-------------lgt8fx8p_pwm_d9d10_duo1
844
+ |-------------lgtdemo
845
+ |---------------PETest
846
+ |---------------adc_i2v56
847
+ |---------------dac0_ramp
848
+ |---------------dac1_ramp
849
+ |---------PMU
850
+ |-----------examples
851
+ |-------------pmu_autowakeup
852
+ |-------------pmu_poweroff
853
+ |---------SPI
854
+ |-----------examples
855
+ |-------------BarometricPressureSensor
856
+ |-------------DigitalPotControl
857
+ |-----------src
858
+ |---------SoftwareSerial
859
+ |-----------examples
860
+ |-------------SoftwareSerialExample
861
+ |-------------TwoPortReceive
862
+ |---------Syntax
863
+ |---------VUsbDevice
864
+ |-----------examples
865
+ |-------------VUsbDeviceDemo1
866
+ |-----------tools
867
+ |---------VUsbKeyboard
868
+ |-----------examples
869
+ |-------------Vkeyboard
870
+ |---------VUsbMouse
871
+ |-----------examples
872
+ |-------------CircleMouse
873
+ |---------WDT
874
+ |-----------examples
875
+ |-------------wdt_test
876
+ |---------Wire
877
+ |-----------examples
878
+ |-------------SFRRanger_reader
879
+ |-------------digital_potentiometer
880
+ |-------------master_reader
881
+ |-------------master_writer
882
+ |-------------slave_receiver
883
+ |-------------slave_sender
884
+ |-----------utility
885
+ |---------usbdrv
886
+ |-------variants
887
+ |---------lgt8f88a
888
+ |---------lgt8fx8ds20
889
+ |---------lgt8fx8e
890
+ |---------lgt8fx8p
891
+ |---------lgt8fx8p48
892
+ |---------standard
893
+ |-memory
894
+ |---FlashDiagnostics
895
+ |---SPIFlash_LowPowerLab
896
+ |---eeprom_clear
897
+ |---eeprom_read
898
+ |---eeprom_write
899
+ |-motor
900
+ |---2CH-Stepper-ctl
901
+ |---2CH-stepper-ctl-2
902
+ |---DRV8825-CNC-NANO-Shield
903
+ |---pulse-motor-ctrl
904
+ |---pulse-motor-ctrl-delay
905
+ |---pulse-motor-ctrl-pulse
906
+ |---pulse-motor-stp
907
+ |---pulse-motor-stp-2
908
+ |-software
909
+ |---scheduler
910
+ |-----Scheduler_example01
911
+ |-----Scheduler_example01-simple01
912
+ |-test-only
913
+ |---12-Practice
914
+ |-----Test_data_format
915
+ |-----blink
916
+ |-------blink_all_leds
917
+ |-------blink_io5_esp32_serialoutput
918
+ |-------blink_led9
919
+ |-----button
920
+ |---AC
921
+ |-----Zero-crossing-control-triac
922
+ |---D13-CTRL-D6
923
+ |---HG
924
+ |---d2-ctrl-d6
925
+ |---d2-ctrl-d6-2
926
+ |---serial-2bytes
927
+ |---serial-test1
928
+ |-triac
929
+ |---SCR
930
+ |---SCR-GW
931
+ |---SCR-GW2
932
+ |---SCR-MJ
933
+ |---SCR-MJ-TIME
934
+ |---acdimmer_sleeping
935
+ |---el-noob
936
+ |---elenoob
937
+ |---triac-d3
938
+ |---zero
939
+ |-----count
940
+ |---zero-crossing
941
+ |---zero-crossing-1
942
+ |---zero-crossing-2
943
+ |---zero-crossing-3
944
+ |---zero-crossing-4
SDK-dat/Arduino-IDE-DAT/arduino-code-v1.md
... ...
@@ -1,944 +0,0 @@
1
-
2
-# arduino code v1
3
-
4
-- https://github.com/Edragon/Arduino-main
5
-
6
-
7
-## The category list of Sketchbook
8
-
9
- .
10
- |-74HC
11
- |---74HC165
12
- |-AD
13
- |---ADS1115_test
14
- |---MCP3421
15
- |---PCF8591
16
- |-Audio
17
- |---mp3-player
18
- |-----DFPlayer
19
- |-------FullFunction
20
- |-------GetStarted
21
- |-----VS1003
22
- |-Drive
23
- |---DRV8833
24
- |---DRV8871
25
- |---L293
26
- |---L298_simple
27
- |---L298_speed_button_dir
28
- |---Motorshield-StepperTest
29
- |---TB6600
30
- |-----acc-stepper
31
- |-----acc-stepper-serial
32
- |-----tb6600
33
- |---arduino shields
34
- |-----Blance_shield
35
- |-----L298P
36
- |-----L298P_motor_shield
37
- |-------motor_shield_r3_2_brush_dc_auto_ino
38
- |-----Stabilizer
39
- |---quad
40
- |-----init
41
- |-ETH_LAN8720
42
- |-FM
43
- |---RDA5820
44
- |-Input
45
- |---button-read
46
- |---interrupt-atmega2560-20
47
- |-Interactive
48
- |---05_display
49
- |-----3.5'' LCD shield
50
- |-------Example01-DisplayString
51
- |---------DisplayString
52
- |-------Example02-graphicstest
53
- |---------graphicstest
54
- |-------Example03-readpixel_kbv
55
- |---------readpixel_kbv
56
- |-------Example04-testcard_kbv
57
- |---------testcard_kbv
58
- |-------Example05-scroll_kbv
59
- |---------scroll_kbv
60
- |-------Example06-DisplayChinese
61
- |---------DisplayChinese
62
- |-------Example07-ShowBMP_320X480
63
- |---------PIC
64
- |---------ShowBMP
65
- |-------Example08-GLUE_Demo_480x320
66
- |---------GLUE_Demo_480x320
67
- |-------Example09-TouchScreen_Calibr_kbv
68
- |---------TouchScreen_Calibr_kbv
69
- |-------Example10-Touch
70
- |---------tftpaint
71
- |-------Example11-Phonecal - 480X320
72
- |---------phonecal
73
- |-------Install libraries
74
- |---------Adafruit_GFX
75
- |---------Adafruit_TFTLCD
76
- |-----------bitmaps
77
- |-----------examples
78
- |-------------graphicstest
79
- |-------------rotationtest
80
- |-------------tftbmp
81
- |-------------tftbmp_shield
82
- |-------------tftpaint
83
- |-------------tftpaint_shield
84
- |---------MCUFRIEND_kbv
85
- |-----------bitmaps
86
- |-----------examples
87
- |-------------GLUE_Demo_320x240
88
- |-------------GLUE_Demo_400x240
89
- |-------------GLUE_Demo_480x320
90
- |-------------GLUE_Demo_800x480
91
- |-------------LCD_ID_readreg
92
- |-------------TouchScreen_Calibr_kbv
93
- |-------------Touch_shield_kbv
94
- |-------------UTouch_Calibr_kbv
95
- |-------------aspect_kbv
96
- |-------------graphictest_kbv
97
- |-------------graphictest_slim
98
- |-------------readpixel_kbv
99
- |-------------scroll_kbv
100
- |-------------showBMP_kbv_as7
101
- |-------------testcard_kbv
102
- |---------TouchScreen
103
- |-----------examples
104
- |-------------touchscreendemo
105
- |-------------touchscreendemoshield
106
- |-------SDCard Exten Example
107
- |---------CardInfo
108
- |---------Datalogger
109
- |---------DumpFile
110
- |---------Files
111
- |---------ReadWrite
112
- |---------listfiles
113
- |-----Serial7SegmentDisplay-master
114
- |-------Production
115
- |-------firmware
116
- |---------Serial 7-Segment Display
117
- |-----------Arduino_Examples
118
- |-------------S7S_Example_I2C_Basic
119
- |-------------S7S_Example_I2C_ChangeAddress
120
- |-------------S7S_Example_I2C_Settings
121
- |-------------S7S_Example_SPI_Basic
122
- |-------------S7S_Example_SPI_Settings
123
- |-------------S7S_Example_Serial_Basic
124
- |-------------S7S_Example_Serial_Brightness
125
- |-------------S7S_Example_Serial_ColonDots
126
- |-------------S7S_Example_Serial_Mode_Change
127
- |-------------S7S_Example_Serial_Predator
128
- |-------------S7S_Example_Serial_Settings
129
- |-------------S7S_Example_Serial_SoftwareReset
130
- |-----------Serial_7_Segment_Display_Firmware
131
- |-------hardware
132
- |-----TM1650_4_key
133
- |---08-LCD
134
- |-----1.8-ST7735-demo
135
- |-----1.8-ST7735-demo-2
136
- |-----3.5inch_Arduino_Mega2560_ILI9486_V1.0
137
- |-------Example01-UTFT_Demo_480x320
138
- |---------UTFT_Demo_480x320
139
- |-------Example02-UTFT_ViewFont
140
- |---------UTFT_ViewFont
141
- |-------Example03-UTFT_Buttons_Demo
142
- |---------UTFT_Buttons_Demo_320x240
143
- |-------Example04-UTouch_ButtonTest
144
- |---------UTouch_ButtonTest
145
- |-------Example05-UTFT_Textrotation_Demo
146
- |---------UTFT_Textrotation_Demo
147
- |-------Example06-UTFT_Buttons_Bitmap_Demo
148
- |---------UTFT_Buttons_Bitmap_Demo
149
- |-------Install libraries
150
- |---------UTFT
151
- |-----------Documentation
152
- |-----------License
153
- |-----------Tools
154
- |-----------examples
155
- |-------------Arduino (ARM) + Teensy
156
- |---------------UTFT_Bitmap
157
- |---------------UTFT_Bitmap_128x128
158
- |---------------UTFT_CPLD_PageSwitching
159
- |---------------UTFT_Demo_128x128_Serial
160
- |---------------UTFT_Demo_160x128_Serial
161
- |---------------UTFT_Demo_220x176
162
- |---------------UTFT_Demo_220x176_Serial
163
- |---------------UTFT_Demo_320x240
164
- |---------------UTFT_Demo_320x240_Serial
165
- |---------------UTFT_Demo_400x240
166
- |---------------UTFT_Demo_480x272
167
- |---------------UTFT_Demo_480x320
168
- |---------------UTFT_Demo_800x480
169
- |---------------UTFT_Rotate_Bitmap
170
- |---------------UTFT_Textrotation_Demo
171
- |---------------UTFT_ViewFont
172
- |-------------Arduino (AVR)
173
- |---------------UTFT_Bitmap
174
- |---------------UTFT_Bitmap_128x128
175
- |---------------UTFT_CPLD_PageSwitching
176
- |---------------UTFT_Demo_128x128_Serial
177
- |---------------UTFT_Demo_160x128_Serial
178
- |---------------UTFT_Demo_220x176
179
- |---------------UTFT_Demo_220x176_Serial
180
- |---------------UTFT_Demo_320x240
181
- |---------------UTFT_Demo_320x240_Serial
182
- |---------------UTFT_Demo_400x240
183
- |---------------UTFT_Demo_480x272
184
- |---------------UTFT_Demo_480x320
185
- |---------------UTFT_Demo_800x480
186
- |---------------UTFT_Leonardo_Demo_320x240
187
- |---------------UTFT_Rotate_Bitmap
188
- |---------------UTFT_Textrotation_Demo
189
- |---------------UTFT_ViewFont
190
- |-------------TI LaunchPads (Energia)
191
- |---------------UTFT_Bitmap
192
- |---------------UTFT_Demo_160x128_Serial
193
- |---------------UTFT_Demo_220x176
194
- |---------------UTFT_Demo_220x176_Serial
195
- |---------------UTFT_Demo_320x240
196
- |---------------UTFT_Demo_400x240
197
- |---------------UTFT_Demo_480x320
198
- |---------------UTFT_Rotate_Bitmap
199
- |---------------UTFT_Textrotation_Demo
200
- |---------------UTFT_ViewFont
201
- |-------------chipKit
202
- |---------------UTFT_Bitmap
203
- |---------------UTFT_Bitmap_128x128
204
- |---------------UTFT_Demo_128x128_Serial
205
- |---------------UTFT_Demo_160x128_Serial
206
- |---------------UTFT_Demo_220x176
207
- |---------------UTFT_Demo_220x176_Serial
208
- |---------------UTFT_Demo_320x240
209
- |---------------UTFT_Demo_320x240_Serial
210
- |---------------UTFT_Demo_400x240
211
- |---------------UTFT_Demo_480x272
212
- |---------------UTFT_Demo_480x320
213
- |---------------UTFT_Demo_800x480
214
- |---------------UTFT_Rotate_Bitmap
215
- |---------------UTFT_Textrotation_Demo
216
- |---------------UTFT_ViewFont
217
- |-----------hardware
218
- |-------------arm
219
- |-------------avr
220
- |-------------pic32
221
- |-----------tft_drivers
222
- |-------------HX8357B
223
- |-------------HX8357C
224
- |-------------SPFD5420
225
- |-------------cpld
226
- |-------------hx8340b
227
- |---------------8
228
- |---------------s
229
- |-------------hx8347a
230
- |-------------hx8352a
231
- |-------------hx8353c
232
- |-------------ili9225
233
- |-------------ili9325c
234
- |-------------ili9325d
235
- |---------------alt
236
- |---------------default
237
- |-------------ili9327
238
- |-------------ili9341
239
- |---------------16
240
- |---------------s4p
241
- |---------------s5p
242
- |-------------ili9481
243
- |-------------ili9486
244
- |-------------ili9488
245
- |-------------pcf8833
246
- |-------------r61581
247
- |-------------s1d19122
248
- |-------------s6d0164
249
- |-------------s6d1121
250
- |-------------ssd1289
251
- |-------------ssd1963
252
- |---------------480
253
- |---------------800
254
- |---------------800alt
255
- |-------------st7735
256
- |---------------alt
257
- |---------------std
258
- |-------------st7735s
259
- |---------UTFT_Buttons
260
- |-----------hardware
261
- |-------------arm
262
- |-------------avr
263
- |-------------pic32
264
- |---------UTouch
265
- |-----------hardware
266
- |-------------arm
267
- |-------------avr
268
- |-------------pic32
269
- |-------SDCard Exten Example
270
- |---------CardInfo
271
- |---------Datalogger
272
- |---------DumpFile
273
- |---------Files
274
- |---------ReadWrite
275
- |---------listfiles
276
- |-----lcd-shield-16bit-pant-demo
277
- |-----lcd-shield-8bit-image-demo
278
- |-----lcd-shield-8bit-pant-demo
279
- |-----lcd-shield-8bit-touch-demo
280
- |-----mega-shield-3.2-example
281
- |-----touch-draw-3.2-400x240-LCD
282
- |-----touch-draw-3.2inch-LCD
283
- |-----touch-draw-LCD
284
- |---5050RGBLED
285
- |---EDL
286
- |-----EDL70
287
- |---ILE1008
288
- |-----ILE1008-test
289
- |---LEDs
290
- |-----ColorPalette
291
- |-----RGB_analogwrite
292
- |-----RGB_analogwrite_ESP_LIGHT
293
- |---PWM
294
- |-----Fading
295
- |---TM
296
- |-----TM1650-Buttons_clicks
297
- |-----TM1650_example01
298
- |-----TM1650_setSegments
299
- |---e-ink
300
- |-----e-ink-2.13
301
- |-----epd2in13-demo
302
- |-----epd2in9-demo
303
- |---seg_display-74HC595
304
- |-----2x4-seg-display
305
- |-----74HC595_header
306
- |-----display_header
307
- |-----display_header_2
308
- |-Interface
309
- |---11-Interface
310
- |-----AT
311
- |-----HT16213
312
- |-----HT16214
313
- |-----PCF
314
- |-----PCF_8574_2
315
- |-----SD
316
- |---17-audio
317
- |-----uda1334
318
- |---18-protocol
319
- |-----can-receive-2
320
- |-----can-send-2
321
- |---19-DACADC
322
- |-----TLC5615
323
- |-----TM8211-PT8211
324
- |---I2C
325
- |-----IIC-DS1307
326
- |-----IIC-MISC
327
- |-------OLED-12832
328
- |-----IIC_PCF8591
329
- |-----MultiSpeedI2CScanner
330
- |-----iic-eeprom_read
331
- |-----iic_scan
332
- |-----iic_scan_2
333
- |-------iic_scan
334
- |-----iic_scan_3
335
- |---RS485
336
- |-----RS485_receive
337
- |-----RS485_receive2
338
- |-----RS485_send
339
- |-----RS485_send2
340
- |---Serial
341
- |-----Serial-data-save
342
- |-------Serial-read_32
343
- |-------Serial-read_end_stop
344
- |-------Serial-simple_read
345
- |-------Serial-test
346
- |-------TDS16
347
- |-------TDS16-2
348
- |-------star-marker-fix-len
349
- |-------start-end-marker-bytes
350
- |-----hex-read-all
351
- |-----serial-basic
352
- |-------AT-echo-test
353
- |-------Software_serial_print_hex
354
- |-------mutiple-serial-1
355
- |-------serial-simple-print
356
- |-------serial_read-write
357
- |-------software-serial-print
358
- |-------software_serial_example1
359
- |-------uart_debug
360
- |-------wrong-data
361
- |-----serial-find
362
- |-------serial-find
363
- |-------serial-find-2
364
- |---fastHaverSine
365
- |---freq-pwm
366
- |-----RGB5050-fade
367
- |-----RGB5050-loop
368
- |-----atmega2560-flow
369
- |-----frequency-1
370
- |-----frequency-read
371
- |-----test-1
372
- |-----test-2
373
- |-----test-3
374
- |-----test-4
375
- |---oneWireSearch
376
- |---softwareserial1
377
- |-NFC
378
- |---readMifare
379
- |-Other
380
- |---arduino_reset
381
- |---mills
382
- |-RF
383
- |---02_LORA
384
- |-----Arduino_LoRa_GPS
385
- |-----Arduino_LoRa_Gateway
386
- |-----Arduino_LoRa_Gateway_1_4
387
- |-----Arduino_LoRa_Generic_Sensor
388
- |-----Arduino_LoRa_InteractiveDevice
389
- |-----Arduino_LoRa_Ping_Pong
390
- |-----Arduino_LoRa_Radiohead_Example
391
- |-----Arduino_LoRa_Simple_BeaconCollar
392
- |-----Arduino_LoRa_Simple_SoilHum
393
- |-----Arduino_LoRa_Simple_temp
394
- |-----Arduino_LoRa_SoilHum
395
- |-----Arduino_LoRa_temp
396
- |-----Arduino_LoRa_ucamII
397
- |-----DAR1050-1
398
- |-----LoRaDuplex-arduino_lora
399
- |-----Lora_TestFlash
400
- |-----SX1262_TX
401
- |-----SX126x_Transmit
402
- |-----rf69_reliable_datagram_client
403
- |-----rf69_reliable_datagram_server
404
- |-----rf95_reliable_datagram_client
405
- |-----rf95_reliable_datagram_server
406
- |-----sx1278_rf95_server
407
- |---06_NRF24
408
- |-----RH_C
409
- |-----RH_S
410
- |-----nrf24duino_start
411
- |-----radiolib_RX
412
- |-----radiolib_TX
413
- |---10-GPS
414
- |-----Arduino ATGM338H
415
- |-------1.测试例程
416
- |---------GPS_UNO_Test
417
- |-------2.解析例程
418
- |---------GPS_UNO
419
- |-------3.扩展例程
420
- |---------UNO+GPS+TFT1.44彩屏显示
421
- |-----------GPS_UNO
422
- |-----GPS_SD_logger
423
- |-----GPS_SOFT-UART
424
- |-----GPS_UART
425
- |-----arduino_GPS
426
- |-------neo6_reader
427
- |---14-Wireless
428
- |-----JDY-08
429
- |-----PS2-ED1
430
- |-----PS2-LGT8F328P-SSOP
431
- |-----Press-Blink
432
- |---15-2345G
433
- |-----SIM7020E
434
- |---16-RFID
435
- |-----125KHZ
436
- |-------EL-125
437
- |---------EL125-hardware-1
438
- |---------EL125-software-1
439
- |---------EL125-software-2
440
- |-------EM4100
441
- |-----HF
442
- |---ASK
443
- |-----RECV
444
- |-----TRN
445
- |---Arduino-AT
446
- |-----AT
447
- |-----GSM-Software-AT-test
448
- |-----GSM-Software-AT-test-2
449
- |---Arduino_SIM800
450
- |-----GSM Library
451
- |-------GSM_Shield
452
- |---------examples
453
- |-----------GSM_Shield_Call
454
- |-----------GSM_Shield_LibVer
455
- |-----------GSM_Shield_Reg
456
- |-----------GSM_Shield_Test
457
- |-----LCD5110_Graph-0022
458
- |-------LCD5110_Graph
459
- |---------examples
460
- |-----------LCD5110_Graph_Demo
461
- |-----------LCD5110_Scrolling_Text
462
- |-----------LCD5110_TinyFont_View
463
- |-----NewSoftSerial
464
- |-------examples
465
- |---------MegaNewSoftSerialTest
466
- |---------NewSoftSerialTest
467
- |---------TwoNSSTest
468
- |---BC95
469
- |---BC95-good
470
- |---GPS
471
- |---NGS1072
472
- |-----NGS1072
473
- |-----NGS1072-2
474
- |-----NGS1072-3
475
- |-----NGS1072-4
476
- |-----NGS1072-5
477
- |-----NGS1072-GPRS-MQTT-RELAY-2
478
- |-------PubSubClient
479
- |---------examples
480
- |-----------mqtt_auth
481
- |-----------mqtt_basic
482
- |-----------mqtt_esp8266
483
- |-----------mqtt_publish_in_callback
484
- |-----------mqtt_reconnect_nonblocking
485
- |-----------mqtt_stream
486
- |---------src
487
- |---------tests
488
- |-----------src
489
- |-------------lib
490
- |-----------testcases
491
- |-------TinyGSM
492
- |---------examples
493
- |-----------AllFunctions
494
- |-----------BlynkClient
495
- |-----------FileDownload
496
- |-----------HttpClient
497
- |-----------HttpsClient
498
- |-----------MqttClient
499
- |-----------WebClient
500
- |---------extras
501
- |---------tools
502
- |-----------AT_Debug
503
- |-----------Diagnostics
504
- |-----------FactoryReset
505
- |-----------test_build
506
- |-----NGS1072-GPRS-MQTT-RELAY-4
507
- |-----NGS1072-tiny_GSM
508
- |-------PubSubClient
509
- |---------examples
510
- |-----------mqtt_auth
511
- |-----------mqtt_basic
512
- |-----------mqtt_esp8266
513
- |-----------mqtt_publish_in_callback
514
- |-----------mqtt_reconnect_nonblocking
515
- |-----------mqtt_stream
516
- |---------src
517
- |---------tests
518
- |-----------src
519
- |-------------lib
520
- |-----------testcases
521
- |-------TinyGSM
522
- |---------examples
523
- |-----------AllFunctions
524
- |-----------BlynkClient
525
- |-----------FileDownload
526
- |-----------HttpClient
527
- |-----------HttpsClient
528
- |-----------MqttClient
529
- |-----------WebClient
530
- |---------extras
531
- |---------tools
532
- |-----------AT_Debug
533
- |-----------Diagnostics
534
- |-----------FactoryReset
535
- |-----------test_build
536
- |-----basic-blink
537
- |---SIM5360E
538
- |---SIM7020
539
- |---menu_test
540
- |---sim868-2
541
- |---sim868-3f
542
- |-RTC
543
- |---DS1307-setTimeAndSqw
544
- |-SVC
545
- |---SVC1039
546
- |-----SVC1039-v1
547
- |-----SVC1039-v2
548
- |-Sensor
549
- |---04_sensor
550
- |-----8CH line finder
551
- |-------QTRSensors
552
- |---------examples
553
- |-----------QTRAExample
554
- |-----------QTRARawValuesExample
555
- |-----------QTRRCExample
556
- |-----------QTRRCRawValuesExample
557
- |-------robot
558
- |-------robot1
559
- |-------sketch_mar03a
560
- |-------sketch_mar21a
561
- |-------sketch_mar26a
562
- |-------sketch_nov08a
563
- |-------寻线小车3
564
- |---------sketch_mar03a
565
- |-----Color Sensor
566
- |-----IR forwarder
567
- |-------hex_write
568
- |-------irForward
569
- |-------r2
570
- |-------string_pratice
571
- |-----IRrecord
572
- |-----IRrecord-demo_test
573
- |-----RCWL-0516
574
- |-----Thermal_Printer
575
- |-------Firmware
576
- |---------ThermalPrinter_Example
577
- |-------QRprint
578
- |---------QRprint
579
- |-----------examples
580
- |-------------example
581
- |-----Turbidity sensor
582
- |-------TS300-1
583
- |-------TS300-2
584
- |-------ZDMK_AD
585
- |-------ZDMK_IO
586
- |-----arduino touch pad touch sensor
587
- |-----max9812
588
- |-----sensor_pack
589
- |---DHT_Simulator
590
- |---EDW-01
591
- |---HD710
592
- |---HLW8012
593
- |-----SonoffPOWV2
594
- |-----basic
595
- |-----library
596
- |-----pulse-read
597
- |-----remote_debug
598
- |---HLW8032
599
- |-----1602_out
600
- |-----V2
601
- |-------parse-dat-1
602
- |-------parse-data-v1
603
- |-------parse-data-v2
604
- |-------raw_read
605
- |-------raw_read-2
606
- |-------raw_read-3
607
- |-------raw_read-4
608
- |-----main
609
- |-----test1
610
- |-----volt_cal
611
- |---KX023-1025
612
- |---Light Sensor
613
- |-----BH1750
614
- |-------AVR_GY-30
615
- |---------AVR_GY-30
616
- |-------BH1750_arduino
617
- |-------C8051F340
618
- |-------STC_GY-30
619
- |---------STC_BH1750
620
- |-----BH1750_0x23
621
- |-----SFE_TSL2561
622
- |-------examples
623
- |---------SFE_TSL2561_example
624
- |-----SFE_TSL2561-2
625
- |-------examples
626
- |---------SparkFunTSL2561Example
627
- |-------src
628
- |-----TEMT6000
629
- |-----TSL2561
630
- |---MAX31855
631
- |-----MAX31855-LCD
632
- |-----max31855_demo0
633
- |-----max31855_tutorial_basic
634
- |---MAX4466
635
- |-----max4466_arduino
636
- |---TF-TDS
637
- |-----TF-TDS-01
638
- |-----TF-TDS-01-atmega2560
639
- |---ap3216
640
- |---motion
641
- |-----MPU-6500
642
- |---passive-buzzer
643
- |---tempearture
644
- |-----AM2322_0x5c
645
- |-----DS18B20
646
- |-----bme280test
647
- |-----bme280test-electrodraong-version
648
- |-----bmp180_0x77
649
- |-WCH
650
- |---CH423
651
- |-analog
652
- |---ReadAnalogVoltage
653
- |-arduino-as-isp-target
654
- |-board-bsp
655
- |---CUS
656
- |-----caffee-machine
657
- |-------ac_detect
658
- |-------ac_detect-2
659
- |-------full-test
660
- |-------relay-1
661
- |-------serial
662
- |-------serial-2
663
- |-------serial-3
664
- |-------serial-commands-feedback-1
665
- |---DAR
666
- |-----DAR1050-ED-UNO
667
- |-------ReceiveDemo
668
- |-----DAR1060-atmega4808
669
- |-------atmega4808
670
- |-------serial
671
- |-------serial-print-find
672
- |-----DAR1064
673
- |-------Blink
674
- |-------Button
675
- |---DAS
676
- |-----DAS1033_card_shield
677
- |-----DAS1040-GPS-Shield
678
- |---DVA
679
- |-----loraduino
680
- |-------SPIFlash_Detect
681
- |-------SPIFlash_ReadWrite
682
- |-------SPIFlash_init
683
- |-------blink-d7
684
- |-------customer-loraduino
685
- |-------rf95_reliable_datagram_client
686
- |---EDAtiny_test
687
- |---EMS
688
- |-----EMS-5110
689
- |-----EMS-SPI_LCD
690
- |-----EMS-advanced
691
- |---ILE1073-25W-LED-Panel
692
- |-----Fade-test
693
- |-----attiny-202-btn
694
- |---IR-shield
695
- |-----IRrecvDumpV2
696
- |---MISC board demo code
697
- |-----1. HelloWorld实验
698
- |-------lesson1
699
- |-----10.四位共阳数码管实验验动
700
- |-------LESSON20
701
- |-----11.按键数码管累加实验
702
- |-------LESSON21
703
- |---------LESSON21
704
- |-----12.蜂鸣器实验
705
- |-------sketch_may30a
706
- |-----13.数码管电压表(数码管显示)
707
- |-------VOLT
708
- |-----14 温度传感器LM35实验
709
- |-------LESSON22
710
- |-----15.数码管显示读取模拟值
711
- |-------sketch_jul14a
712
- |-----16.模拟口测电压 电压表
713
- |-------sketch_may31a
714
- |-----16.温度传感器LM35实验(数码管显示)
715
- |-------LESSON23
716
- |---------VOLT
717
- |-----17.延时法驱动舵机
718
- |-------sketch_may30a
719
- |-----18.库函数驱动舵机(电位器调角度)
720
- |-------Knob
721
- |-----19.DS18B20显示温度 串口发送
722
- |-------sketch_jul14b
723
- |-----2.LED闪烁
724
- |-------lesson2
725
- |-----20.DS18B20 (数码管显示)温度
726
- |-------sketch_jun21a
727
- |-----207.超声波测距程序
728
- |-------sketch_may31a
729
- |-----21.EEPORM读写 数码管记录机器使用次数
730
- |-------EEPROM
731
- |-----22.红外解码程序显示码值
732
- |-------sketch_jun05a
733
- |-----23.红外控制 LED开关
734
- |-------sketch_jun05a
735
- |-----24.红外人流计数
736
- |-------sketch_jul16a
737
- |-----25.蓝牙控制LED亮度
738
- |-------sketch_may30a
739
- |-----26.步进电机实验
740
- |-------LESSON38
741
- |---------LESSON38
742
- |-----27.虚拟鼠标实验
743
- |-------LESSON39
744
- |-----3.广告灯程序
745
- |-------lesson3
746
- |-----4.按键实验
747
- |-------sketch_may30a
748
- |-----5.按键控制LED实验
749
- |-------lesson4
750
- |-----6.电位器实验
751
- |-------lesson5
752
- |-----7.电位器调LED亮度
753
- |-------LED__
754
- |-----8.二路PWM调光(呼吸灯)
755
- |-------AnalogWriteMega
756
- |-----9.三基色LED实验
757
- |-------LESSON17
758
- |---arduino-triac-shield
759
- |---arduino_motor_shield
760
- |---atmega2560
761
- |-----AT
762
- |-----AT-echo-test
763
- |---atmega4808
764
- |-----serial2-alt
765
- |---attiny404-blink
766
- |---digispark
767
- |---edatiny
768
- |-----Blink
769
- |---loraduino
770
- |-----rf95_reliable_datagram_client
771
- |---purifier
772
- |-----01-basic
773
- |-----01-motor-test
774
- |-----01-motor-test-2
775
- |-----02-AT-test
776
- |-----02-sensor-analog
777
- |-----03-motor-test
778
- |-----bk-1
779
- |-----peripherals
780
- |-----relay-on
781
- |-----tap_6
782
- |-caffee-card2
783
- |---FW_CF1_001
784
- |---FW_CF1_EEP
785
- |-data
786
- |---bk
787
- |-----1
788
- |-----2
789
- |-----SD
790
- |-----String
791
- |-------string-hex-array
792
- |-----eeprom-1
793
- |-----eeprom-clean
794
- |-----eeprom-read
795
- |-----eeprom-read-2
796
- |-----eeprom-write
797
- |-----hex_1
798
- |-----int_array_to_hex
799
- |-----serial-hex-1
800
- |-----serial-hex-2
801
- |-----serial-hex-3
802
- |---eeprom-page
803
- |---serial-final
804
- |-----serial-hex-4
805
- |-display_text
806
- |-dva1007_loraduino2
807
- |-gpio
808
- |---TRIAC-D4D5
809
- |-hardware
810
- |---LGT
811
- |-----avr
812
- |-------bootloaders
813
- |---------lgt8f88a
814
- |---------lgt8fx8ds20
815
- |---------lgt8fx8e
816
- |---------lgt8fx8p
817
- |-------cores
818
- |---------lgt8f
819
- |-------libraries
820
- |---------E2PROM
821
- |-----------examples
822
- |-------------eeprom_clear
823
- |-------------eeprom_read
824
- |-------------eeprom_write
825
- |---------Larduino_HSPExamples
826
- |-----------examples
827
- |-------------lgt8f328p_qfp48_case00
828
- |-------------lgt8f328p_qfp48_case01
829
- |-------------lgt8f328p_qfp48_case02
830
- |-------------lgt8f328p_sysclock
831
- |-------------lgt8fx8p_fastio
832
- |-------------lgt8fx8p_pwm_d1d2_duo0
833
- |-------------lgt8fx8p_pwm_d1d2_solo_fast
834
- |-------------lgt8fx8p_pwm_d24d25_duo1
835
- |-------------lgt8fx8p_pwm_d24d25_solo
836
- |-------------lgt8fx8p_pwm_d24d25_solo_fast
837
- |-------------lgt8fx8p_pwm_d24d25_solo_slow
838
- |-------------lgt8fx8p_pwm_d3d11_solo
839
- |-------------lgt8fx8p_pwm_d5d6_duo0
840
- |-------------lgt8fx8p_pwm_d5d6_duo1_boost
841
- |-------------lgt8fx8p_pwm_d5d6_solo
842
- |-------------lgt8fx8p_pwm_d5d6_turnoff
843
- |-------------lgt8fx8p_pwm_d9d10_duo1
844
- |-------------lgtdemo
845
- |---------------PETest
846
- |---------------adc_i2v56
847
- |---------------dac0_ramp
848
- |---------------dac1_ramp
849
- |---------PMU
850
- |-----------examples
851
- |-------------pmu_autowakeup
852
- |-------------pmu_poweroff
853
- |---------SPI
854
- |-----------examples
855
- |-------------BarometricPressureSensor
856
- |-------------DigitalPotControl
857
- |-----------src
858
- |---------SoftwareSerial
859
- |-----------examples
860
- |-------------SoftwareSerialExample
861
- |-------------TwoPortReceive
862
- |---------Syntax
863
- |---------VUsbDevice
864
- |-----------examples
865
- |-------------VUsbDeviceDemo1
866
- |-----------tools
867
- |---------VUsbKeyboard
868
- |-----------examples
869
- |-------------Vkeyboard
870
- |---------VUsbMouse
871
- |-----------examples
872
- |-------------CircleMouse
873
- |---------WDT
874
- |-----------examples
875
- |-------------wdt_test
876
- |---------Wire
877
- |-----------examples
878
- |-------------SFRRanger_reader
879
- |-------------digital_potentiometer
880
- |-------------master_reader
881
- |-------------master_writer
882
- |-------------slave_receiver
883
- |-------------slave_sender
884
- |-----------utility
885
- |---------usbdrv
886
- |-------variants
887
- |---------lgt8f88a
888
- |---------lgt8fx8ds20
889
- |---------lgt8fx8e
890
- |---------lgt8fx8p
891
- |---------lgt8fx8p48
892
- |---------standard
893
- |-memory
894
- |---FlashDiagnostics
895
- |---SPIFlash_LowPowerLab
896
- |---eeprom_clear
897
- |---eeprom_read
898
- |---eeprom_write
899
- |-motor
900
- |---2CH-Stepper-ctl
901
- |---2CH-stepper-ctl-2
902
- |---DRV8825-CNC-NANO-Shield
903
- |---pulse-motor-ctrl
904
- |---pulse-motor-ctrl-delay
905
- |---pulse-motor-ctrl-pulse
906
- |---pulse-motor-stp
907
- |---pulse-motor-stp-2
908
- |-software
909
- |---scheduler
910
- |-----Scheduler_example01
911
- |-----Scheduler_example01-simple01
912
- |-test-only
913
- |---12-Practice
914
- |-----Test_data_format
915
- |-----blink
916
- |-------blink_all_leds
917
- |-------blink_io5_esp32_serialoutput
918
- |-------blink_led9
919
- |-----button
920
- |---AC
921
- |-----Zero-crossing-control-triac
922
- |---D13-CTRL-D6
923
- |---HG
924
- |---d2-ctrl-d6
925
- |---d2-ctrl-d6-2
926
- |---serial-2bytes
927
- |---serial-test1
928
- |-triac
929
- |---SCR
930
- |---SCR-GW
931
- |---SCR-GW2
932
- |---SCR-MJ
933
- |---SCR-MJ-TIME
934
- |---acdimmer_sleeping
935
- |---el-noob
936
- |---elenoob
937
- |---triac-d3
938
- |---zero
939
- |-----count
940
- |---zero-crossing
941
- |---zero-crossing-1
942
- |---zero-crossing-2
943
- |---zero-crossing-3
944
- |---zero-crossing-4
Tech/GPIO-dat/GPIO-dat.md
... ...
@@ -0,0 +1,17 @@
1
+
2
+# GPIO-dat
3
+
4
+
5
+GPIOS (Giant Pixel Interleaved Octal Shifts) is a method used in data storage and transfer used in several of Texas Instruments DSP chips. In these chips, the Gpio mode is used for general purpose applications. Here are some of the common GPIO (General Purpose Input/Output) modes:
6
+
7
+1. PP (Push-Pull): In this mode, the output pins are in a high impedance state and provide a high drive current when being driven.
8
+2. TP (Open-Drain/Sink): In this mode, the output pins are in a low state, and they sink a current when being driven. This mode is useful for interfacing with open drain outputs or and gates.
9
+3. In (Input): The GPIO pin is used simply as an input to the device and any connected module.
10
+4. POI (Pull-Up Resistor In): In this mode, the cable noise can be filtered out by the internal pull-up resistors while the device is running.
11
+5. POPI (Pull-Up Resistor/Pull-Down Input): It's a versatile option that provides isolation for both inputs and outputs
12
+
13
+d
14
+
15
+## ref
16
+
17
+- [[logic-shifter]]
... ...
\ No newline at end of file
Tech/Interface-dat/I2C-dat/I2C-dat.md
... ...
@@ -5,7 +5,7 @@
5 5
6 6
for [[IOD1001-dat]]
7 7
8
- //I2C device found at address 0x3C ! // OLED = 0x78
8
+//I2C device found at address 0x3C ! // OLED = 0x78
9 9
10 10
//I2C device found at address 0x75 ! // IP5306
11 11
... ...
@@ -27,6 +27,12 @@ the most easy to use library for ESP
27 27
28 28
- [[INA226-dat]] - [[OLED-dat]]
29 29
30
+
30 31
## ref
31 32
32
-- https://randomnerdtutorials.com/esp32-i2c-communication-arduino-ide/#1
... ...
\ No newline at end of file
0
+- https://randomnerdtutorials.com/esp32-i2c-communication-arduino-ide/#1
1
+
2
+
3
+- [[arduino-dat]]
4
+
5
+- [[I2C-scan-dat.ino]]
... ...
\ No newline at end of file
Tech/Interface-dat/I2C-dat/I2C-scan-dat.ino
... ...
@@ -0,0 +1,52 @@
1
+
2
+#include <Wire.h>
3
+
4
+void setup()
5
+{
6
+ Wire.begin();
7
+
8
+ Serial.begin(115200);
9
+ Serial.println("\nI2C Scanner");
10
+}
11
+
12
+void loop()
13
+{
14
+ byte error, address;
15
+ int nDevices;
16
+
17
+ Serial.println("Scanning...");
18
+
19
+ nDevices = 0;
20
+ for (address = 1; address < 127; address++)
21
+ {
22
+ // The i2c_scanner uses the return value of
23
+ // the Write.endTransmisstion to see if
24
+ // a device did acknowledge to the address.
25
+ Wire.beginTransmission(address);
26
+ error = Wire.endTransmission();
27
+
28
+ if (error == 0)
29
+ {
30
+ Serial.print("I2C device found at address 0x");
31
+ if (address < 16)
32
+ Serial.print("0");
33
+ Serial.print(address, HEX);
34
+ Serial.println(" !");
35
+
36
+ nDevices++;
37
+ }
38
+ else if (error == 4)
39
+ {
40
+ Serial.print("Unknow error at address 0x");
41
+ if (address < 16)
42
+ Serial.print("0");
43
+ Serial.println(address, HEX);
44
+ }
45
+ }
46
+ if (nDevices == 0)
47
+ Serial.println("No I2C devices found\n");
48
+ else
49
+ Serial.println("done\n");
50
+
51
+ delay(2000); // wait 5 seconds for next scan
52
+}
... ...
\ No newline at end of file
Tech/power-dat/dcdc-dat/dcdc-bulk-dat.md
... ...
@@ -9,7 +9,7 @@
9 9
| ------------ | ----------- | --------- | ----- | ----- | ---- | ------- | --------- |
10 10
| TPS5430 | | 5.5-36V | 3A | | | |
11 11
| TPS54331 | | 3.5-28V | 3A | | | SOP-8 |
12
-| TPS54302 DDCR | [[TI-dat]] | 4.5-28V | 3A | | | SOT23-6 | 0.98 |
12
+| TPS54302 DDCR | [[TI-power-dat]] | 4.5-28V | 3A | | | SOT23-6 | 0.98 |
13 13
| LM2596S-5.0 | | 40V | 3A | | | |
14 14
| TLV62569DBVR | | 2.5V~5.5V | 2A | | | |
15 15
| TPS5450DDAR | | 5.5V~36V | 5A | | | |
... ...
@@ -35,7 +35,7 @@ ME3116AM6G - 最高输入 40V 带载可达 1A 的 DC/DC 降压型稳压器 ME311
35 35
36 36
37 37
38
-
38
+- [[dcdc-bulk-output-dat]]
39 39
40 40
## ref
41 41
Tech/power-dat/dcdc-dat/dcdc-bulk-output-dat.md
... ...
@@ -0,0 +1,20 @@
1
+
2
+# dcdc-bulk-output-dat
3
+
4
+
5
+when Vref = 0.6V
6
+
7
+Vout = Vref * (R2/R3+1)
8
+
9
+for 5V = 0.6V * (100K / ? + 1 )
10
+
11
+100K / R3 = 5V/0.6V - 1 = 7.3333
12
+100K / R3 = 5.2V/0.6V - 1 = 7.6666
13
+
14
+R3 = 13.633K or below 13.3K for 5.2V
15
+
16
+
17
+| output | rough | Rbot | Rtop | Vref |
18
+| ------ | ----- | ----- | ---- | ---- |
19
+| 5V | 5.2V | 13.3K | 100K | 0.6V |
20
+| 4V | 3.93V | 18K | 100K | 0.6V |
... ...
\ No newline at end of file
Tech/power-dat/power-dat.md
... ...
@@ -11,4 +11,9 @@
11 11
12 12
13 13
| Parts | Common Value | Note |
14
-| ----- | ------------ | ---- |
... ...
\ No newline at end of file
0
+| ----- | ------------ | ---- |
1
+
2
+
3
+## ref
4
+
5
+- [[power]]
... ...
\ No newline at end of file
board-series-dat/arduino-dat/arduino-dat.md
... ...
@@ -3,4 +3,10 @@
3 3
4 4
- legacy wiki page - https://w.electrodragon.com/w/Category:Arduino
5 5
6
+- [[arduino-uno-dat]] - [[edarduino-dat]]
6 7
8
+- [[arduino-ide-dat]] - [[arduinoISP-dat]]
9
+
10
+- [[arduino-esp32-dat]] - [[arduino-esp8266-dat]]
11
+
12
+- [[arduino-code-v1-dat]]
... ...
\ No newline at end of file