Board/IOD/IOD1001-dat/2023-10-11-17-48-53.png
... ...
Binary files /dev/null and b/Board/IOD/IOD1001-dat/2023-10-11-17-48-53.png differ
Board/IOD/IOD1001-dat/IOD1001-dat.md
... ...
@@ -0,0 +1,15 @@
1
+
2
+# IOD1001-dat
3
+
4
+![](2023-10-11-17-48-53.png)
5
+
6
+## Pins:
7
+- GND
8
+- VCC
9
+- SCL
10
+- SDA
11
+
12
+## Features
13
+- Voltage: 3.3V
14
+- Chip: SSD1306
15
+
Board/NWI/NWI1126-DAT/NWI1126-DAT.md
... ...
@@ -58,7 +58,7 @@ Peripheral schamtic please refer to [[NWI1124-DAT]]
58 58
59 59
## Note
60 60
61
-- [[ESP32-USB]] failed on code testing, may work or not, consider it is not working if you buy.
61
+- [[ESP32-USB-dat]] failed on code testing, may work or not, consider it is not working if you buy.
62 62
63 63
## Update Log
64 64
SDK/ESP-SDK-dat/ESP-SDK-dat.md
... ...
@@ -38,8 +38,8 @@ Wirings use [[USB-TTL-dat]]
38 38
39 39
## Functions
40 40
41
-- [[ESP32-USB]]
42
-
41
+- [[ESP-HDK-dat]]
42
+- [[ESP32-USB-dat]] - [[ESP32-SPI-dat]]
43 43
44 44
45 45
## ref
SDK/ESP-SDK-dat/ESP32-Functions/ESP32-SPI-dat.md
... ...
@@ -0,0 +1,56 @@
1
+
2
+# ESP32 SPI
3
+
4
+| Pin | VSPI | HSPI |
5
+| ---- | ----- | ------- |
6
+| 3V3 | 3.3V | |
7
+| CS | io 5 | 15 / 27 |
8
+| CLK | io 18 | 14 |
9
+| MISO | io 19 | 12 |
10
+| MOSI | io 23 | 13 |
11
+| GND | GND | |
12
+
13
+
14
+
15
+SPI arduino define
16
+
17
+ #define VSPI_MISO MISO
18
+ #define VSPI_MOSI MOSI
19
+ #define VSPI_SCLK SCK
20
+ #define VSPI_SS SS
21
+
22
+ #define HSPI_MISO 12
23
+ #define HSPI_MOSI 13
24
+ #define HSPI_SCLK 14
25
+ #define HSPI_SS 15
26
+
27
+## sketch refer to here:
28
+
29
+
30
+hspi.begin(HSPI_CLK, HSPI_MISO, HSPI_MOSI, HSPI_SS);
31
+
32
+
33
+ #include "FS.h"
34
+ #include "SD.h"
35
+ #include "SPI.h"
36
+
37
+ SPIClass spiSD(HSPI);
38
+ #define SD_CS 15
39
+
40
+ void setup() {
41
+ Serial.begin(115200);
42
+ spiSD.begin(14, 12, 13, SD_CS ); //SCK, MISO, MOSI, SS //HSPI1 // hspi.begin(HSPI_CLK, HSPI_MISO, HSPI_MOSI, HSPI_SS);
43
+
44
+ if (!SD.begin( SD_CS, spiSD )) {
45
+ // if(!SD.begin()){
46
+ Serial.println("Card Mount Failed");
47
+ return;
48
+ }
49
+ }
50
+
51
+ void loop() {
52
+ }
53
+
54
+
55
+
56
+- [[RA-01]]
... ...
\ No newline at end of file
SDK/ESP-SDK-dat/ESP32-Functions/ESP32-USB-dat.md
... ...
@@ -0,0 +1,26 @@
1
+
2
+
3
+# ESP32 USB
4
+
5
+## USB pins
6
+
7
+![](40-51-15-19-07-2023.png)
8
+
9
+
10
+## Arduino Code tested with [[ESP32-­C3-­WROOM-­2-DAT]]
11
+- not working
12
+- maybe hardware problem, or code problem, or need further test
13
+- consider it is not working if you buy.
14
+
15
+
16
+
17
+## Arduino Code tested with [[ESP32-S2]]
18
+- working
19
+
20
+
21
+## Boards
22
+
23
+- [[NWI1119-DAT]]
24
+- [[NWI1126-DAT]]
25
+- [[NWI1235-DAT]] - [[ESP32-S2]]
26
+
SDK/ESP-SDK-dat/ESP32-USB.md
... ...
@@ -1,26 +0,0 @@
1
-
2
-
3
-# ESP32 USB
4
-
5
-## USB pins
6
-
7
-![](40-51-15-19-07-2023.png)
8
-
9
-
10
-## Arduino Code tested with [[ESP32-­C3-­WROOM-­2-DAT]]
11
-- not working
12
-- maybe hardware problem, or code problem, or need further test
13
-- consider it is not working if you buy.
14
-
15
-
16
-
17
-## Arduino Code tested with [[ESP32-S2]]
18
-- working
19
-
20
-
21
-## Boards
22
-
23
-- [[NWI1119-DAT]]
24
-- [[NWI1126-DAT]]
25
-- [[NWI1235-DAT]] - [[ESP32-S2]]
26
-
Tech/interactive-dat/OLED-dat/OLED-dat.md
... ...
@@ -0,0 +1,4 @@
1
+
2
+# OLED-dat
3
+
4
+- [[IOD1001-dat]]
... ...
\ No newline at end of file
chip-cn/Espressif/ESP-DAT.md
... ...
@@ -1,15 +0,0 @@
1
-
2
-# ESP DAT
3
-
4
-- [[ESP32-DAT]]
5
-
6
-
7
-## Common Error
8
-
9
-
10
-### ESP failed when system trying to connect to WIFI
11
-
12
-- USB power supply must be sufficient, the WIFI connection cost peak current up to 500mA, USB without external power supply will NOT work
13
-
14
-- use external power supply instead, and check if you can find ESP IP address if wifi back-end console page.
15
-
chip-cn/Espressif/ESP-HDK-DAT.md
... ...
@@ -0,0 +1,41 @@
1
+
2
+# ESP-HDK-DAT
3
+
4
+
5
+- [[ESP32-DAT]] - [[ESP32-HDK-dat]]
6
+
7
+
8
+## Common Error
9
+
10
+
11
+# ESP-HDK-dat
12
+
13
+
14
+## Modules Series
15
+
16
+ESP32
17
+- [[ESP32-dat]] - [[ESP32-WROOM-dat]]
18
+
19
+ESP32-S2 / ESP32-S3
20
+
21
+ESP32-C2 / ESP32-C3
22
+
23
+ESP8266
24
+
25
+ESP8684
26
+
27
+ESP8685
28
+
29
+
30
+
31
+### ESP failed when system trying to connect to WIFI
32
+
33
+- USB power supply must be sufficient, the WIFI connection cost peak current up to 500mA, USB without external power supply will NOT work
34
+
35
+- use external power supply instead, and check if you can find ESP IP address if wifi back-end console page.
36
+
37
+
38
+
39
+## ref
40
+
41
+- [[ESP-SDK-dat]]
... ...
\ No newline at end of file
chip-cn/Espressif/ESP32/ESP32-SPI-dat.md
... ...
@@ -1,54 +0,0 @@
1
-
2
-# ESP32 SPI
3
-
4
-| Pin | VSPI | HSPI |
5
-| ---- | ----- | ------- |
6
-| 3V3 | 3.3V | |
7
-| CS | io 5 | 15 / 27 |
8
-| CLK | io 18 | 14 |
9
-| MISO | io 19 | 12 |
10
-| MOSI | io 23 | 13 |
11
-| GND | GND | |
12
-
13
-SPI arduino define
14
-
15
- #define VSPI_MISO MISO
16
- #define VSPI_MOSI MOSI
17
- #define VSPI_SCLK SCK
18
- #define VSPI_SS SS
19
-
20
- #define HSPI_MISO 12
21
- #define HSPI_MOSI 13
22
- #define HSPI_SCLK 14
23
- #define HSPI_SS 15
24
-
25
-## sketch refer to here:
26
-
27
-
28
-hspi.begin(HSPI_CLK, HSPI_MISO, HSPI_MOSI, HSPI_SS);
29
-
30
-
31
- #include "FS.h"
32
- #include "SD.h"
33
- #include "SPI.h"
34
-
35
- SPIClass spiSD(HSPI);
36
- #define SD_CS 15
37
-
38
- void setup() {
39
- Serial.begin(115200);
40
- spiSD.begin(14, 12, 13, SD_CS ); //SCK, MISO, MOSI, SS //HSPI1 // hspi.begin(HSPI_CLK, HSPI_MISO, HSPI_MOSI, HSPI_SS);
41
-
42
- if (!SD.begin( SD_CS, spiSD )) {
43
- // if(!SD.begin()){
44
- Serial.println("Card Mount Failed");
45
- return;
46
- }
47
- }
48
-
49
- void loop() {
50
- }
51
-
52
-
53
-
54
-- [[RA-01]]
... ...
\ No newline at end of file
chip-cn/chip-cn-dat.md
... ...
@@ -1,7 +1,7 @@
1 1
2 2
# chip cn dat
3 3
4
-- [[ESP-dat]]
4
+- [[ESP-HDK-DAT]]
5 5
6 6
- [[SIMCOM-dat]]
7 7