18 lines
677 B
Markdown
18 lines
677 B
Markdown
|
# Fluepdot Scripts
|
||
|
|
||
|
Collection of runnable scripts to display stuff on the fluepdot module in the flipdot hackspace
|
||
|
|
||
|
All scripts should load the hostname(s) for the modules from the `.env` file.
|
||
|
|
||
|
Requirements for each script may vary but most will use the python-fluepdot library.
|
||
|
All requirements should be listed in the main script file.
|
||
|
|
||
|
|
||
|
|
||
|
## Notes:
|
||
|
|
||
|
### Flashing firmware
|
||
|
|
||
|
```
|
||
|
esptool.py -p /dev/ttyUSB0 -b 115200 --before default_reset --after hard_reset --chip esp32 write_flash --flash_mode keep --flash_size detect --flash_freq 40m 0x800 partition_table/partition-table.bin 0xd000 bootloader/bootloader.bin 0x10000 ./flipdot-firmware.bin 0xD000 ota_data_initial.bin
|
||
|
```
|