2e4ae87671892c99171cd7e1bdfb9564aaa93181
Board/DVA/DVA1007-DAT/DVA1007-DAT.md
| ... | ... | @@ -12,3 +12,9 @@ |
| 12 | 12 | | RF_INT | D2 | SX1278 | |
| 13 | 13 | | RF_RST | D8 | SX1278 | |
| 14 | 14 | | Voltage-Dect | A7 | | |
| 15 | + |
|
| 16 | + |
|
| 17 | +- external arduino library [[arduino-lib]] lowpower_lab SPIFlash |
|
| 18 | + |
|
| 19 | + |
|
| 20 | +- [[flash]] |
|
| ... | ... | \ No newline at end of file |
Board/IDD/IDD1013-DAT/IDD1013-DAT.md
| ... | ... | @@ -62,7 +62,7 @@ |
| 62 | 62 | |
| 63 | 63 | |
| 64 | 64 | ### ENV |
| 65 | -- [[arduino-IDE]] - 1.8.19 |
|
| 65 | +- [[arduino-IDE-DAT]] - 1.8.19 |
|
| 66 | 66 | - lib - version 3.0.5 |
| 67 | 67 | - esp32 2.0.6 |
| 68 | 68 |
SDK/Arduino-IDE/arduino-IDE-DAT.md
| ... | ... | @@ -0,0 +1,50 @@ |
| 1 | + |
|
| 2 | +### boards |
|
| 3 | + |
|
| 4 | +https://arduino.esp8266.com/stable/package_esp8266com_index.json |
|
| 5 | + |
|
| 6 | +megaTinyCore - megaTinyAVR |
|
| 7 | +https://mcudude.github.io/MegaCoreX/package_MCUdude_MegaCoreX_index.json |
|
| 8 | +https://github.com/MCUdude/MegaCoreX |
|
| 9 | + |
|
| 10 | + |
|
| 11 | +https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json |
|
| 12 | + |
|
| 13 | +http://drazzy.com/package_drazzy.com_index.json |
|
| 14 | +https://github.com/SpenceKonde/megaTinyCore |
|
| 15 | + |
|
| 16 | +https://github.com/SpenceKonde/ATTinyCore |
|
| 17 | + |
|
| 18 | + |
|
| 19 | +https://nulllab.coding.net/p/lgt/d/nulllab_lgt_arduino/git/raw/master/package_nulllab_boards_index_zh.json |
|
| 20 | + |
|
| 21 | +https://cdn.jsdelivr.net/gh/nulllaborg/arduino_nulllab/package_nulllab_boards_index_zh.json |
|
| 22 | + |
|
| 23 | + |
|
| 24 | + |
|
| 25 | + |
|
| 26 | + |
|
| 27 | +- [[softwareserial]] |
|
| 28 | + |
|
| 29 | +- [[arduino-lib]] |
|
| 30 | + |
|
| 31 | + |
|
| 32 | + |
|
| 33 | + |
|
| 34 | +### include |
|
| 35 | + |
|
| 36 | + |
|
| 37 | +use include “test.h” to add variables |
|
| 38 | + |
|
| 39 | + |
|
| 40 | + |
|
| 41 | + |
|
| 42 | +## snippet |
|
| 43 | + |
|
| 44 | + // Periodically blink the onboard LED while listening for serial commands |
|
| 45 | + if ((int)(millis()/500) > lastPeriod) |
|
| 46 | + { |
|
| 47 | + lastPeriod++; |
|
| 48 | + pinMode(LED, OUTPUT); |
|
| 49 | + digitalWrite(LED, lastPeriod%2); |
|
| 50 | + } |
SDK/Arduino-IDE/arduino-IDE.md
| ... | ... | @@ -1,39 +0,0 @@ |
| 1 | - |
|
| 2 | -### boards |
|
| 3 | - |
|
| 4 | -https://arduino.esp8266.com/stable/package_esp8266com_index.json |
|
| 5 | - |
|
| 6 | -megaTinyCore - megaTinyAVR |
|
| 7 | -https://mcudude.github.io/MegaCoreX/package_MCUdude_MegaCoreX_index.json |
|
| 8 | -https://github.com/MCUdude/MegaCoreX |
|
| 9 | - |
|
| 10 | - |
|
| 11 | -https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json |
|
| 12 | - |
|
| 13 | -http://drazzy.com/package_drazzy.com_index.json |
|
| 14 | -https://github.com/SpenceKonde/megaTinyCore |
|
| 15 | - |
|
| 16 | -https://github.com/SpenceKonde/ATTinyCore |
|
| 17 | - |
|
| 18 | - |
|
| 19 | -https://nulllab.coding.net/p/lgt/d/nulllab_lgt_arduino/git/raw/master/package_nulllab_boards_index_zh.json |
|
| 20 | - |
|
| 21 | -https://cdn.jsdelivr.net/gh/nulllaborg/arduino_nulllab/package_nulllab_boards_index_zh.json |
|
| 22 | - |
|
| 23 | - |
|
| 24 | - |
|
| 25 | - |
|
| 26 | - |
|
| 27 | -- [[softwareserial]] |
|
| 28 | - |
|
| 29 | -### library |
|
| 30 | - |
|
| 31 | -- fastLED |
|
| 32 | - |
|
| 33 | - |
|
| 34 | - |
|
| 35 | - |
|
| 36 | -### include |
|
| 37 | - |
|
| 38 | - |
|
| 39 | -use include “test.h” to add variables |
SDK/Arduino-IDE/lib/arduino-lib.md
| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | + |
|
| 2 | + |
|
| 3 | +## lowpower lab SPIFlash |
|
| 4 | +- //get it here: https://github.com/LowPowerLab/SPIFlash |
|
| 5 | + |
|
| 6 | +### library |
|
| 7 | + |
|
| 8 | +- fastLED |
|
| ... | ... | \ No newline at end of file |
SDK/avrdude/avrdude.md
SDK/flash.md
| ... | ... | @@ -0,0 +1,14 @@ |
| 1 | + |
|
| 2 | + |
|
| 3 | +# flash |
|
| 4 | + |
|
| 5 | +MANUFACTURER_ID - OPTIONAL, |
|
| 6 | +- 0x1F44 for adesto(ex atmel) 4mbit flash |
|
| 7 | +- 0xEF30: 4mbit |
|
| 8 | +- 0xEF40: 64mbit, 16mbit = tested |
|
| 9 | + |
|
| 10 | + |
|
| 11 | +16mbit |
|
| 12 | + |
|
| 13 | + |
|
| 14 | +- [[arduino-IDE]] |
|
| ... | ... | \ No newline at end of file |