diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..bc5780a Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md index ee084ae..c40cdba 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ NodeRed is running here: http://localhost:1880/ ## Hardware ### Arduino IDE + We are using HelTec Automation Wirelsess Sticks ESP32 Dev-Boards. Their GitHub repo can be found here: https://github.com/HelTecAutomation/Heltec_ESP32 @@ -31,6 +32,10 @@ I had to install VCP Drivers, first: https://www.silabs.com/developers/usb-to-ua You can add their Board Manager to the boards managers URLs: https://github.com/HelTecAutomation/Heltec_ESP32/blob/master/library.json and find their libraries in the IDE (Sketch -> Include Library -> Manage Libraries... Search for "heltec esp32"). +These boards are already *V3* boards, so be careful selecting the right board and port (VCP). + +![Arduino IDE](docs/images/flash-with-arduino.png "select the right board and port") + ### Find the port @@ -40,5 +45,14 @@ Usually you can find the used port using `esptool.py`, but that's not working fo esptool.py write_flash_status --non-volatile 0 ``` +#### Using MicroPython + +Download the firmware: + +Flash it using `esptool`: https://micropython.org/download/GENERIC_S3/ +```sh +esptool.py --chip esp32s3 write_flash -z 0 ~/Desktop/GENERIC_S3-20220117-v1.18.bin +``` + diff --git a/docs/.DS_Store b/docs/.DS_Store new file mode 100644 index 0000000..642c7f2 Binary files /dev/null and b/docs/.DS_Store differ diff --git a/docs/images/flash-with-arduino.png b/docs/images/flash-with-arduino.png new file mode 100644 index 0000000..32e5117 Binary files /dev/null and b/docs/images/flash-with-arduino.png differ diff --git a/software/container/conf/mosquitto.conf b/software/container/conf/mosquitto.conf new file mode 100644 index 0000000..c8348ac --- /dev/null +++ b/software/container/conf/mosquitto.conf @@ -0,0 +1,2 @@ +listener 1883 +allow_anonymous true