No description
Find a file
2025-02-27 13:55:17 +01:00
docker uOTA firmware update and docker file 2025-02-25 17:44:51 +01:00
server/flask minor changes 2025-02-27 13:54:37 +01:00
cmd_reset.sh test cases for rtc and reset command 2025-02-20 18:04:58 +01:00
cmd_rtc.sh test cases for rtc and reset command 2025-02-20 18:04:58 +01:00
cmd_uota.sh uota and upload test script 2025-02-27 11:43:03 +01:00
cmd_upload.sh uota and upload test script 2025-02-27 11:43:03 +01:00
create_firmware_update.sh scipt to generate firmware updates 2025-02-27 11:34:48 +01:00
install_program_on_esp32.sh install script for everything on esp32 locally 2025-02-27 11:46:16 +01:00
main.py working sdlogger 2025-02-27 11:42:00 +01:00
README.md sdlogger working upload and logging 2025-02-20 18:04:19 +01:00
requests.py requests library patched for http 1.1 2025-02-27 11:43:48 +01:00
uota.cfg uota config for working sdlogger 2025-02-27 11:42:22 +01:00
version uOTA firmware update and docker file 2025-02-25 17:44:51 +01:00

SDLOGGER

sdlogger takes all data from uart0 rx and writes it onto a sdcard.

available commands

  • RTC
    • "epoch" : unix timestamp in seconds
  • upload
    • wlan_ssid
    • wlan_password: optional, do not provide if open wlan is to be used
    • upload_server: server URL, e.g.: "http://localhost" port 80/443 will get autoassigned based on http or https
    • router_mac: mac address of the router, will be used in filename
  • UOTA
    • wlan_ssid
    • wlan_password: optional, do not provide if open wlan is to be used
  • reset
    • no options

creating JSON for commands

#! /usr/bin/env python
import json

json.dumps({'cmd': 'RTC','epoch':123456778890})