├── README.md ├── examples ├── SimpleGateway │ ├── ESP32_Gateway.ino │ ├── GyverHTTP.ino │ ├── SimpleGateway.ino.esp32.bin │ ├── batteryNodeServer.ino │ ├── batteryNodeServer.ino.lolin32.bin │ └── data │ │ ├── data.csv │ │ ├── data.json │ │ ├── device_246.bin │ │ ├── device_246old.bin │ │ ├── floorplan.jpg │ │ ├── index.html │ │ ├── index1.html │ │ ├── sensormap.html │ │ ├── uPlot.iife.min.js │ │ └── uPlot.min.css ├── SimpleRemote │ ├── SimpleRemote.ino │ ├── batteyNodeRemote.ino │ ├── batteyNodeRemote.ino.lolin32.bin │ └── device_246.bin ├── probeRequest.ino └── test │ ├── 802.11_Gateway.ino │ ├── 802.11_remote_battery.ino │ ├── 802.11_remote_mains.ino │ ├── ESP32_Remote_EEPROM.ino │ ├── ProbeRequestGateway_ESP32_uPlot.ino │ ├── ProbeRequestGateway_ESP8266.ino │ ├── ProbeRequestRemote_ESP32_OneWay.ino │ ├── ProbeRequestRemote_ESP32_TwoWay.ino │ ├── ProbeRequestRemote_ESP8266_OneWay.ino │ └── ProbeRequestRemote_ESP8266_TwoWay.ino └── test ├── Battery_Charging_Simulation.xlsx ├── Dashboard.html ├── ESPCoreRulesReceiver ├── Base.ino ├── Commands.ino ├── ESPCoreRules.ino ├── ESPCoreRulesReceiver.ino ├── Globals.h ├── LICENSE ├── Misc.ino ├── README.md ├── Rules.ino ├── Serial.ino ├── Telnet.ino ├── Time.ino ├── WebServer.ino ├── WiFi.ino ├── _P001_Switch.ino ├── _P002_ADC.ino ├── _P004_Dallas.ino ├── _P011_PME.ino ├── _P012_LCD.ino ├── _P014_SI7021.ino ├── _P100_MSGBUS.ino ├── _P101_MQTT.ino ├── _P102_ESPNOW.ino ├── _P110_HTTP.ino ├── _P111_HTTPS.ino ├── _P200_NanoSerial.ino ├── _P201_TUYA.ino ├── _P203_SH1107.ino ├── _P254_Log.ino ├── _P255_Debug.ino ├── __Copyright.ino ├── __Doc.ino └── __Plugin.ino ├── ESPCoreRulesSender ├── Base.ino ├── Commands.ino ├── ESPCoreRulesSender.ino ├── Globals.h ├── Misc.ino ├── Rules.ino ├── Serial.ino ├── Telnet.ino ├── Time.ino ├── WebServer.ino ├── WiFi.ino ├── _P001_Switch.ino ├── _P002_ADC.ino ├── _P004_Dallas.ino ├── _P011_PME.ino ├── _P012_LCD.ino ├── _P014_SI7021.ino ├── _P100_MSGBUS.ino ├── _P101_MQTT.ino ├── _P102_ESPNOW.ino ├── _P110_HTTP.ino ├── _P111_HTTPS.ino ├── _P200_NanoSerial.ino ├── _P201_TUYA.ino ├── _P203_SH1107.ino ├── _P254_Log.ino ├── _P255_Debug.ino ├── __Copyright.ino ├── __Doc.ino └── __Plugin.ino ├── IOTcontrol ├── IOTcontrol.ino └── data │ ├── d3_renderers.min.js │ ├── export_renderers.min.js │ ├── index.html │ ├── index1.html │ ├── pivot.css │ ├── pivot.min.css │ ├── pivot.min.js │ ├── plotly_renderers.min.js │ └── sensors.csv ├── NodeRed ├── ProbeRequestRPI.md ├── ProbeRequest_AsyncWebServer_WebSocket_TinyMQTT_uPlot_LittleFSEditor.ino ├── ProbeRequest_LittleDB.ino ├── Proberequest_LittleFS.ino ├── SQLite3.ino ├── SQLite3_Proberequest.ino ├── SVPlot.js ├── SelectBox.html ├── Server ├── IOTControl.html ├── css │ └── tabulator_midnight.min.css ├── js │ ├── cell.js │ ├── column.js │ ├── column_manager.js │ ├── core.js │ ├── core_modules.js │ ├── footer_manager.js │ ├── jquery.min.js │ ├── jquery_wrapper.js │ ├── modules │ │ ├── accessor.js │ │ ├── ajax.js │ │ ├── calculation_colums.js │ │ ├── clipboard.js │ │ ├── comms.js │ │ ├── data_tree.js │ │ ├── download.js │ │ ├── edit.js │ │ ├── export.js │ │ ├── filter.js │ │ ├── format.js │ │ ├── frozen_columns.js │ │ ├── frozen_rows.js │ │ ├── group_rows.js │ │ ├── history.js │ │ ├── html_table_import.js │ │ ├── keybindings.js │ │ ├── layout.js │ │ ├── localize.js │ │ ├── menu.js │ │ ├── moveable_columns.js │ │ ├── moveable_rows.js │ │ ├── mutator.js │ │ ├── page.js │ │ ├── persistence.js │ │ ├── print.js │ │ ├── reactive_data.js │ │ ├── resize_columns.js │ │ ├── resize_rows.js │ │ ├── resize_table.js │ │ ├── responsive_layout.js │ │ ├── select_row.js │ │ ├── sort.js │ │ └── validate.js │ ├── modules_enabled.js │ ├── polyfills.js │ ├── row.js │ ├── row_manager.js │ ├── tabulator.min.js │ └── tabulator_core.min.js ├── options.json ├── sensorData.json └── test.json ├── circuit-20220702-0200.png ├── data.csv ├── dataHandling.ino ├── flow.json ├── svplot.html ├── tinyMQTT_WebSocket_asyncWebserver_littleDB.ino ├── ui-table.json └── world_index_data_small.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/README.md -------------------------------------------------------------------------------- /examples/SimpleGateway/ESP32_Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/ESP32_Gateway.ino -------------------------------------------------------------------------------- /examples/SimpleGateway/GyverHTTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/GyverHTTP.ino -------------------------------------------------------------------------------- /examples/SimpleGateway/SimpleGateway.ino.esp32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/SimpleGateway.ino.esp32.bin -------------------------------------------------------------------------------- /examples/SimpleGateway/batteryNodeServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/batteryNodeServer.ino -------------------------------------------------------------------------------- /examples/SimpleGateway/batteryNodeServer.ino.lolin32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/batteryNodeServer.ino.lolin32.bin -------------------------------------------------------------------------------- /examples/SimpleGateway/data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/data.csv -------------------------------------------------------------------------------- /examples/SimpleGateway/data/data.json: -------------------------------------------------------------------------------- 1 | [13] -------------------------------------------------------------------------------- /examples/SimpleGateway/data/device_246.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/device_246.bin -------------------------------------------------------------------------------- /examples/SimpleGateway/data/device_246old.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/device_246old.bin -------------------------------------------------------------------------------- /examples/SimpleGateway/data/floorplan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/floorplan.jpg -------------------------------------------------------------------------------- /examples/SimpleGateway/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/index.html -------------------------------------------------------------------------------- /examples/SimpleGateway/data/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/index1.html -------------------------------------------------------------------------------- /examples/SimpleGateway/data/sensormap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/sensormap.html -------------------------------------------------------------------------------- /examples/SimpleGateway/data/uPlot.iife.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/uPlot.iife.min.js -------------------------------------------------------------------------------- /examples/SimpleGateway/data/uPlot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleGateway/data/uPlot.min.css -------------------------------------------------------------------------------- /examples/SimpleRemote/SimpleRemote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleRemote/SimpleRemote.ino -------------------------------------------------------------------------------- /examples/SimpleRemote/batteyNodeRemote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleRemote/batteyNodeRemote.ino -------------------------------------------------------------------------------- /examples/SimpleRemote/batteyNodeRemote.ino.lolin32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleRemote/batteyNodeRemote.ino.lolin32.bin -------------------------------------------------------------------------------- /examples/SimpleRemote/device_246.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/SimpleRemote/device_246.bin -------------------------------------------------------------------------------- /examples/probeRequest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/probeRequest.ino -------------------------------------------------------------------------------- /examples/test/802.11_Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/802.11_Gateway.ino -------------------------------------------------------------------------------- /examples/test/802.11_remote_battery.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/802.11_remote_battery.ino -------------------------------------------------------------------------------- /examples/test/802.11_remote_mains.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/802.11_remote_mains.ino -------------------------------------------------------------------------------- /examples/test/ESP32_Remote_EEPROM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/ESP32_Remote_EEPROM.ino -------------------------------------------------------------------------------- /examples/test/ProbeRequestGateway_ESP32_uPlot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/ProbeRequestGateway_ESP32_uPlot.ino -------------------------------------------------------------------------------- /examples/test/ProbeRequestGateway_ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/ProbeRequestGateway_ESP8266.ino -------------------------------------------------------------------------------- /examples/test/ProbeRequestRemote_ESP32_OneWay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/ProbeRequestRemote_ESP32_OneWay.ino -------------------------------------------------------------------------------- /examples/test/ProbeRequestRemote_ESP32_TwoWay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/ProbeRequestRemote_ESP32_TwoWay.ino -------------------------------------------------------------------------------- /examples/test/ProbeRequestRemote_ESP8266_OneWay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/ProbeRequestRemote_ESP8266_OneWay.ino -------------------------------------------------------------------------------- /examples/test/ProbeRequestRemote_ESP8266_TwoWay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/examples/test/ProbeRequestRemote_ESP8266_TwoWay.ino -------------------------------------------------------------------------------- /test/Battery_Charging_Simulation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Battery_Charging_Simulation.xlsx -------------------------------------------------------------------------------- /test/Dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Dashboard.html -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Base.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Base.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Commands.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Commands.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/ESPCoreRules.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/ESPCoreRules.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/ESPCoreRulesReceiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/ESPCoreRulesReceiver.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Globals.h -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/LICENSE -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Misc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Misc.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/README.md -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Rules.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Rules.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Serial.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Telnet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Telnet.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/Time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/Time.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/WebServer.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/WiFi.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P001_Switch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P001_Switch.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P002_ADC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P002_ADC.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P004_Dallas.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P004_Dallas.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P011_PME.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P011_PME.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P012_LCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P012_LCD.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P014_SI7021.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P014_SI7021.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P100_MSGBUS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P100_MSGBUS.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P101_MQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P101_MQTT.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P102_ESPNOW.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P102_ESPNOW.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P110_HTTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P110_HTTP.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P111_HTTPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P111_HTTPS.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P200_NanoSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P200_NanoSerial.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P201_TUYA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P201_TUYA.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P203_SH1107.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P203_SH1107.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P254_Log.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P254_Log.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/_P255_Debug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/_P255_Debug.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/__Copyright.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/__Copyright.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/__Doc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/__Doc.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesReceiver/__Plugin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesReceiver/__Plugin.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Base.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Base.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Commands.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Commands.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/ESPCoreRulesSender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/ESPCoreRulesSender.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Globals.h -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Misc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Misc.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Rules.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Rules.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Serial.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Telnet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Telnet.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/Time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/Time.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/WebServer.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/WiFi.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P001_Switch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P001_Switch.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P002_ADC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P002_ADC.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P004_Dallas.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P004_Dallas.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P011_PME.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P011_PME.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P012_LCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P012_LCD.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P014_SI7021.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P014_SI7021.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P100_MSGBUS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P100_MSGBUS.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P101_MQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P101_MQTT.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P102_ESPNOW.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P102_ESPNOW.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P110_HTTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P110_HTTP.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P111_HTTPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P111_HTTPS.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P200_NanoSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P200_NanoSerial.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P201_TUYA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P201_TUYA.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P203_SH1107.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P203_SH1107.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P254_Log.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P254_Log.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/_P255_Debug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/_P255_Debug.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/__Copyright.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/__Copyright.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/__Doc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/__Doc.ino -------------------------------------------------------------------------------- /test/ESPCoreRulesSender/__Plugin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ESPCoreRulesSender/__Plugin.ino -------------------------------------------------------------------------------- /test/IOTcontrol/IOTcontrol.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/IOTcontrol.ino -------------------------------------------------------------------------------- /test/IOTcontrol/data/d3_renderers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/d3_renderers.min.js -------------------------------------------------------------------------------- /test/IOTcontrol/data/export_renderers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/export_renderers.min.js -------------------------------------------------------------------------------- /test/IOTcontrol/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/index.html -------------------------------------------------------------------------------- /test/IOTcontrol/data/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/index1.html -------------------------------------------------------------------------------- /test/IOTcontrol/data/pivot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/pivot.css -------------------------------------------------------------------------------- /test/IOTcontrol/data/pivot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/pivot.min.css -------------------------------------------------------------------------------- /test/IOTcontrol/data/pivot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/pivot.min.js -------------------------------------------------------------------------------- /test/IOTcontrol/data/plotly_renderers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/IOTcontrol/data/plotly_renderers.min.js -------------------------------------------------------------------------------- /test/IOTcontrol/data/sensors.csv: -------------------------------------------------------------------------------- 1 | Timestamp,Location,Voltage,RSSI,Temperature,Humidity,Pressure,Light 2 | -------------------------------------------------------------------------------- /test/NodeRed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/NodeRed -------------------------------------------------------------------------------- /test/ProbeRequestRPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ProbeRequestRPI.md -------------------------------------------------------------------------------- /test/ProbeRequest_AsyncWebServer_WebSocket_TinyMQTT_uPlot_LittleFSEditor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ProbeRequest_AsyncWebServer_WebSocket_TinyMQTT_uPlot_LittleFSEditor.ino -------------------------------------------------------------------------------- /test/ProbeRequest_LittleDB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ProbeRequest_LittleDB.ino -------------------------------------------------------------------------------- /test/Proberequest_LittleFS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Proberequest_LittleFS.ino -------------------------------------------------------------------------------- /test/SQLite3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/SQLite3.ino -------------------------------------------------------------------------------- /test/SQLite3_Proberequest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/SQLite3_Proberequest.ino -------------------------------------------------------------------------------- /test/SVPlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/SVPlot.js -------------------------------------------------------------------------------- /test/SelectBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/SelectBox.html -------------------------------------------------------------------------------- /test/Server/IOTControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/IOTControl.html -------------------------------------------------------------------------------- /test/Server/css/tabulator_midnight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/css/tabulator_midnight.min.css -------------------------------------------------------------------------------- /test/Server/js/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/cell.js -------------------------------------------------------------------------------- /test/Server/js/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/column.js -------------------------------------------------------------------------------- /test/Server/js/column_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/column_manager.js -------------------------------------------------------------------------------- /test/Server/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/core.js -------------------------------------------------------------------------------- /test/Server/js/core_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/core_modules.js -------------------------------------------------------------------------------- /test/Server/js/footer_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/footer_manager.js -------------------------------------------------------------------------------- /test/Server/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/jquery.min.js -------------------------------------------------------------------------------- /test/Server/js/jquery_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/jquery_wrapper.js -------------------------------------------------------------------------------- /test/Server/js/modules/accessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/accessor.js -------------------------------------------------------------------------------- /test/Server/js/modules/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/ajax.js -------------------------------------------------------------------------------- /test/Server/js/modules/calculation_colums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/calculation_colums.js -------------------------------------------------------------------------------- /test/Server/js/modules/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/clipboard.js -------------------------------------------------------------------------------- /test/Server/js/modules/comms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/comms.js -------------------------------------------------------------------------------- /test/Server/js/modules/data_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/data_tree.js -------------------------------------------------------------------------------- /test/Server/js/modules/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/download.js -------------------------------------------------------------------------------- /test/Server/js/modules/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/edit.js -------------------------------------------------------------------------------- /test/Server/js/modules/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/export.js -------------------------------------------------------------------------------- /test/Server/js/modules/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/filter.js -------------------------------------------------------------------------------- /test/Server/js/modules/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/format.js -------------------------------------------------------------------------------- /test/Server/js/modules/frozen_columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/frozen_columns.js -------------------------------------------------------------------------------- /test/Server/js/modules/frozen_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/frozen_rows.js -------------------------------------------------------------------------------- /test/Server/js/modules/group_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/group_rows.js -------------------------------------------------------------------------------- /test/Server/js/modules/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/history.js -------------------------------------------------------------------------------- /test/Server/js/modules/html_table_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/html_table_import.js -------------------------------------------------------------------------------- /test/Server/js/modules/keybindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/keybindings.js -------------------------------------------------------------------------------- /test/Server/js/modules/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/layout.js -------------------------------------------------------------------------------- /test/Server/js/modules/localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/localize.js -------------------------------------------------------------------------------- /test/Server/js/modules/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/menu.js -------------------------------------------------------------------------------- /test/Server/js/modules/moveable_columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/moveable_columns.js -------------------------------------------------------------------------------- /test/Server/js/modules/moveable_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/moveable_rows.js -------------------------------------------------------------------------------- /test/Server/js/modules/mutator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/mutator.js -------------------------------------------------------------------------------- /test/Server/js/modules/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/page.js -------------------------------------------------------------------------------- /test/Server/js/modules/persistence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/persistence.js -------------------------------------------------------------------------------- /test/Server/js/modules/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/print.js -------------------------------------------------------------------------------- /test/Server/js/modules/reactive_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/reactive_data.js -------------------------------------------------------------------------------- /test/Server/js/modules/resize_columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/resize_columns.js -------------------------------------------------------------------------------- /test/Server/js/modules/resize_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/resize_rows.js -------------------------------------------------------------------------------- /test/Server/js/modules/resize_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/resize_table.js -------------------------------------------------------------------------------- /test/Server/js/modules/responsive_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/responsive_layout.js -------------------------------------------------------------------------------- /test/Server/js/modules/select_row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/select_row.js -------------------------------------------------------------------------------- /test/Server/js/modules/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/sort.js -------------------------------------------------------------------------------- /test/Server/js/modules/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules/validate.js -------------------------------------------------------------------------------- /test/Server/js/modules_enabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/modules_enabled.js -------------------------------------------------------------------------------- /test/Server/js/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/polyfills.js -------------------------------------------------------------------------------- /test/Server/js/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/row.js -------------------------------------------------------------------------------- /test/Server/js/row_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/row_manager.js -------------------------------------------------------------------------------- /test/Server/js/tabulator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/tabulator.min.js -------------------------------------------------------------------------------- /test/Server/js/tabulator_core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/js/tabulator_core.min.js -------------------------------------------------------------------------------- /test/Server/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/options.json -------------------------------------------------------------------------------- /test/Server/sensorData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/sensorData.json -------------------------------------------------------------------------------- /test/Server/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/Server/test.json -------------------------------------------------------------------------------- /test/circuit-20220702-0200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/circuit-20220702-0200.png -------------------------------------------------------------------------------- /test/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/data.csv -------------------------------------------------------------------------------- /test/dataHandling.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/dataHandling.ino -------------------------------------------------------------------------------- /test/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/flow.json -------------------------------------------------------------------------------- /test/svplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/svplot.html -------------------------------------------------------------------------------- /test/tinyMQTT_WebSocket_asyncWebserver_littleDB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/tinyMQTT_WebSocket_asyncWebserver_littleDB.ino -------------------------------------------------------------------------------- /test/ui-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/ui-table.json -------------------------------------------------------------------------------- /test/world_index_data_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytm/BatteryNode/HEAD/test/world_index_data_small.json --------------------------------------------------------------------------------