No description
Find a file
2025-04-11 18:11:49 +02: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 cmd_rtc.sh: set the actual time from the host system 2025-03-11 15:39:11 +01:00
cmd_uota.sh cmd_uota.sh: use settings from OpenWRT host 2025-03-11 15:40:29 +01:00
cmd_upload.sh uota and upload test script 2025-02-27 11:43:03 +01:00
cmd_webrepl.sh cmd_webrepl.sh: example how to start mpy webrepl 2025-03-11 15:47:02 +01:00
create_firmware_update.sh create_firmware_update.sh: read version from file 2025-03-10 15:55:14 +01:00
install_program_on_esp32.sh requests library got changed, so put it into the update 2025-03-04 16:54:41 +01:00
main.py reduce txpower in hopes of better wlan performance 2025-04-11 18:11:49 +02: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 version: 0.1.6 2025-03-13 17:02:27 +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})