├── .cproject ├── .editorconfig ├── .gitignore ├── .project ├── .settings ├── language.settings.xml ├── org.eclipse.cdt.codan.core.prefs ├── org.eclipse.cdt.core.prefs ├── org.eclipse.cdt.managedbuilder.core.prefs └── org.eclipse.core.resources.prefs ├── 10leds_ru.txt ├── AutoMake.bat ├── ESP-01_RS-485_sch.gif ├── ESP-ADC-192kHz.gif ├── LICENSE ├── Led_holder.scdoc ├── Led_holder.stl ├── Makefile ├── PowerMeter-SPI.jpg ├── PowerMeter.jpg ├── Power_Light_start_2sec.gif ├── Power_ST_AP_ReConnect.gif ├── ProgBin.bat ├── README.md ├── README_esp8266web.md ├── WEBFS22.exe ├── WEBFiles ├── $js.inc ├── 404.htm ├── adc.htm ├── adc.wav ├── adc.xml ├── cookies.js ├── disk_er1.htm ├── disk_er2.htm ├── disk_er3.htm ├── disk_ok.htm ├── favicon.ico ├── footer.inc ├── grf.js ├── grfx1.inc ├── grfx2.inc ├── heap.htm ├── heap.xml ├── history.csv ├── history.htm ├── historycnt.csv ├── index.htm ├── lastkwt.htm ├── lastkwt.xml ├── led.xml ├── leds.xml ├── logo.gif ├── menu.inc ├── menumain.inc ├── powercnt.htm ├── powercnt.xml ├── protect │ ├── aps.xml │ ├── chiprams.xml │ ├── cookie.js │ ├── debug.htm │ ├── debugram.htm │ ├── debugram.txt │ ├── dsleep.htm │ ├── esp_init_data_default.bin │ ├── fram_all.bin │ ├── fullflash.bin │ ├── gpio.htm │ ├── gpio.xml │ ├── hexdmpb.htm │ ├── hexdmpb.txt │ ├── hexdmpd.htm │ ├── hexdmpd.txt │ ├── init.ini │ ├── pr_request.xml │ ├── ram.bin │ ├── rfinit1.htm │ ├── rfinit2.htm │ ├── rfinit3.htm │ ├── scan.htm │ ├── scan.xml │ ├── setmeter.htm │ ├── setup.htm │ ├── system.xml │ ├── uart.htm │ ├── upload.htm │ └── wifi.htm ├── scripts.js ├── settings.htm ├── site.js ├── slider.inc ├── slider.js ├── style.css ├── time.inc ├── timeout.htm ├── timer.inc ├── tst.htm ├── tst.xml ├── vdd.htm ├── vdd.inc └── vdd.xml ├── WEBFilesRS485 ├── $js.inc ├── 404.htm ├── adc.htm ├── adc.xml ├── disk_er1.htm ├── disk_er2.htm ├── disk_er3.htm ├── disk_ok.htm ├── esp.gif ├── favicon.ico ├── footer.inc ├── grf.js ├── grfx1.inc ├── grfx2.inc ├── heap.htm ├── heap.xml ├── help │ ├── webvars.files │ │ ├── filelist.xml │ │ ├── sheet001.htm │ │ ├── sheet002.htm │ │ ├── stylesheet.css │ │ └── tabstrip.htm │ └── webvars.htm ├── index.htm ├── led.xml ├── leds.xml ├── logo.gif ├── menu.inc ├── protect │ ├── aps.xml │ ├── chiprams.xml │ ├── cookie.js │ ├── debug.htm │ ├── dsleep.htm │ ├── esp_init_data_default.bin │ ├── fullflash.bin │ ├── gpio.htm │ ├── gpio.xml │ ├── hexdmpb.htm │ ├── hexdmpb.txt │ ├── hexdmpd.htm │ ├── hexdmpd.txt │ ├── init.ini │ ├── mdb.bin │ ├── mdb.htm │ ├── mdb.xml │ ├── mdbh.xml │ ├── mdbtrn.htm │ ├── mdbtst.htm │ ├── pr_request.xml │ ├── ram.bin │ ├── rfinit1.htm │ ├── rfinit2.htm │ ├── rfinit3.htm │ ├── scan.htm │ ├── scan.xml │ ├── setup.htm │ ├── tstfuncs.htm │ ├── uart.htm │ ├── upload.htm │ └── wifi.htm ├── sample.htm ├── scripts.js ├── sht7x.ovl ├── site.js ├── style.css ├── system.xml ├── time.inc ├── timeout.htm ├── timer.inc ├── tst.htm ├── tst.xml ├── udptp.ovl ├── vdd.htm ├── vdd.inc ├── vdd.xml ├── wdrv.ovl ├── websock.htm └── ws2.css ├── WEBFilesTCP2UART ├── $js.inc ├── 404.htm ├── adc.htm ├── adc.wav ├── adc.xml ├── disk_er1.htm ├── disk_er2.htm ├── disk_er3.htm ├── disk_ok.htm ├── esp.gif ├── favicon.ico ├── footer.inc ├── grf.js ├── grfx1.inc ├── grfx2.inc ├── heap.htm ├── heap.xml ├── help │ ├── webvars.files │ │ ├── filelist.xml │ │ ├── sheet001.htm │ │ ├── sheet002.htm │ │ ├── stylesheet.css │ │ └── tabstrip.htm │ └── webvars.htm ├── ina219.htm ├── ina219.ovl ├── ina219.xml ├── index.htm ├── led.xml ├── leds.xml ├── logo.gif ├── menu.inc ├── protect │ ├── 10leds.ini │ ├── aps.xml │ ├── chiprams.xml │ ├── cookie.js │ ├── debug.htm │ ├── dsleep.htm │ ├── esp_init_data_default.bin │ ├── fullflash.bin │ ├── gpio.htm │ ├── gpio.xml │ ├── hexdmpb.htm │ ├── hexdmpb.txt │ ├── hexdmpd.htm │ ├── hexdmpd.txt │ ├── init.ini │ ├── mdb.bin │ ├── mdb.htm │ ├── mdb.xml │ ├── mdbh.xml │ ├── pr_request.xml │ ├── ram.bin │ ├── rfinit1.htm │ ├── rfinit2.htm │ ├── rfinit3.htm │ ├── scan.htm │ ├── scan.xml │ ├── setup.htm │ ├── tstfuncs.htm │ ├── uart.htm │ ├── udpwave.htm │ ├── upload.htm │ └── wifi.htm ├── sample.htm ├── scripts.js ├── sht7x.ovl ├── site.js ├── style.css ├── system.xml ├── time.inc ├── timeout.htm ├── timer.inc ├── tst.htm ├── tst.xml ├── udptp.ovl ├── vdd.htm ├── vdd.inc ├── vdd.xml ├── wdrv.ovl ├── websock.htm └── ws2.css ├── WEBFilesWeb ├── $js.inc ├── 404.htm ├── adc.htm ├── adc.wav ├── adc.xml ├── disk_er1.htm ├── disk_er2.htm ├── disk_er3.htm ├── disk_ok.htm ├── esp.gif ├── favicon.ico ├── footer.inc ├── grf.js ├── grfx1.inc ├── grfx2.inc ├── heap.htm ├── heap.xml ├── help │ ├── webvars.files │ │ ├── filelist.xml │ │ ├── sheet001.htm │ │ ├── sheet002.htm │ │ ├── stylesheet.css │ │ └── tabstrip.htm │ └── webvars.htm ├── index.htm ├── led.xml ├── leds.xml ├── logo.gif ├── menu.inc ├── protect │ ├── 10leds.ini │ ├── aps.xml │ ├── chiprams.xml │ ├── cookie.js │ ├── debug.htm │ ├── dsleep.htm │ ├── esp_init_data_default.bin │ ├── fullflash.bin │ ├── gpio.htm │ ├── gpio.xml │ ├── hexdmpb.htm │ ├── hexdmpb.txt │ ├── hexdmpd.htm │ ├── hexdmpd.txt │ ├── init.ini │ ├── mdb.bin │ ├── mdb.htm │ ├── mdb.xml │ ├── mdbh.xml │ ├── pr_request.xml │ ├── ram.bin │ ├── rfinit1.htm │ ├── rfinit2.htm │ ├── rfinit3.htm │ ├── scan.htm │ ├── scan.xml │ ├── setup.htm │ ├── tstfuncs.htm │ ├── uart.htm │ ├── udpwave.htm │ ├── upload.htm │ └── wifi.htm ├── sample.htm ├── scripts.js ├── site.js ├── style.css ├── system.xml ├── time.inc ├── timeout.htm ├── timer.inc ├── tst.htm ├── tst.xml ├── vdd.htm ├── vdd.inc ├── vdd.xml └── websock.htm ├── WebSocket ├── ws2.css └── ws2.htm ├── app ├── .gitignore ├── Makefile ├── NULL ├── driver │ ├── Makefile │ ├── adc.c │ ├── eeprom.c │ ├── gpio16.c │ ├── i2c.c │ ├── int_time_us.c │ ├── rs485drv.c │ ├── sigma_delta.c │ └── spi.c ├── gdbstub │ ├── License │ ├── Makefile │ ├── README.md │ ├── eagle_soc.h │ ├── gdbcmds │ ├── gdbstub-cfg.h │ ├── gdbstub-entry.S │ ├── gdbstub-entry.h │ ├── gdbstub.c │ └── gdbstub.h ├── include │ ├── captdns.h │ ├── debug_ram.h │ ├── driver │ │ ├── adc.h │ │ ├── eeprom.h │ │ ├── gpio16.h │ │ ├── i2c.h │ │ ├── int_time_us.h │ │ ├── rs485drv.h │ │ ├── sigma_delta.h │ │ ├── spi.h │ │ ├── spi_readme.txt │ │ └── spi_register.h │ ├── flash_eep.h │ ├── mdbrs485.h │ ├── mdbtab.h │ ├── modbusrtu.h │ ├── modbustcp.h │ ├── netbios.h │ ├── overlay.h │ ├── power_meter.h │ ├── sntp.h │ ├── sys_const_utils.h │ ├── tcp2uart.h │ ├── tcp_srv_conn.h │ ├── web_fs_init.h │ ├── web_iohw.h │ ├── web_srv.h │ ├── web_utils.h │ ├── web_websocket.h │ ├── webfs.h │ ├── websock.h │ ├── wifi.h │ └── wifi_events.h ├── mdbtcp │ ├── Makefile │ ├── mdbfunc.c │ ├── mdbrs485.c │ ├── mdbtab.c │ └── modbustcp.c ├── sdklib │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── lwip │ │ ├── COPYING │ │ ├── Makefile │ │ ├── api │ │ │ ├── Makefile │ │ │ ├── api_lib.c │ │ │ ├── api_msg.c │ │ │ ├── err.c │ │ │ ├── netbuf.c │ │ │ ├── netdb.c │ │ │ ├── netifapi.c │ │ │ ├── sockets.c │ │ │ └── tcpip.c │ │ ├── app │ │ │ ├── Espressif.License │ │ │ ├── Makefile │ │ │ ├── dhcpserver.c │ │ │ ├── espconn.c │ │ │ ├── espconn_mdns.c │ │ │ ├── espconn_tcp.c │ │ │ ├── espconn_udp.c │ │ │ ├── netio.c │ │ │ └── ping.c │ │ ├── core │ │ │ ├── Makefile │ │ │ ├── def.c │ │ │ ├── dhcp.c │ │ │ ├── dns.c │ │ │ ├── init.c │ │ │ ├── ipv4 │ │ │ │ ├── Makefile │ │ │ │ ├── autoip.c │ │ │ │ ├── icmp.c │ │ │ │ ├── igmp.c │ │ │ │ ├── inet.c │ │ │ │ ├── inet_chksum.c │ │ │ │ ├── ip.c │ │ │ │ ├── ip_addr.c │ │ │ │ └── ip_frag.c │ │ │ ├── mdns.c │ │ │ ├── mem.c │ │ │ ├── memp.c │ │ │ ├── netif.c │ │ │ ├── pbuf.c │ │ │ ├── raw.c │ │ │ ├── sntp.c │ │ │ ├── stats.c │ │ │ ├── sys.c │ │ │ ├── tcp.c │ │ │ ├── tcp_in.c │ │ │ ├── tcp_out.c │ │ │ ├── timers.c │ │ │ └── udp.c │ │ └── netif │ │ │ ├── Makefile │ │ │ └── etharp.c │ ├── phy │ │ ├── Makefile │ │ └── phy_chip_v6_unused.c │ ├── pp │ │ ├── Makefile │ │ └── pplibadd.c │ ├── system │ │ ├── Makefile │ │ ├── app_main.c │ │ ├── eagle_lwip_if.c │ │ ├── ets_run_new.c │ │ ├── ets_timer.c │ │ ├── main-vectors.c │ │ ├── mem_manager.c │ │ ├── os_printf.c │ │ ├── rom2ram.c │ │ ├── spi_flash.c │ │ ├── spi_overlap.c │ │ └── wdt.c │ └── wpa │ │ ├── Makefile │ │ ├── os_xtensa.c │ │ └── wpa_debug.c ├── user │ ├── Include │ │ ├── udp_test_port.h │ │ └── ws2812.h │ ├── Makefile │ ├── debug_ram.c │ ├── iot_cloud.c │ ├── power_meter.c │ ├── tmp2net.c │ ├── udp_test_port.c │ └── user_main.c └── web │ ├── Makefile │ ├── captdns.c │ ├── flash_eep.c │ ├── include │ └── web_srv_int.h │ ├── localtime.c │ ├── netbios.c │ ├── overlay.c │ ├── sntp.c │ ├── sys_const.c │ ├── tcp2uart.c │ ├── tcp_srv_conn.c │ ├── uart_tcp.c │ ├── web_fs_init.c │ ├── web_int_callbacks.c │ ├── web_int_vars.c │ ├── web_iohw.c │ ├── web_srv.c │ ├── web_utils.c │ ├── web_websocket.c │ ├── webfs.c │ ├── websock.c │ ├── wifi.c │ └── wifi_events.c ├── asm_damp.bat ├── bin ├── .gitignore ├── 0x00000.bin ├── 0x07000.bin ├── 0x40000.bin ├── FRAM Test │ ├── 0x00000.bin │ ├── 0x07000.bin │ └── firmware.bin ├── blank.bin ├── clear_eep.bin ├── esp_init_data_default.bin ├── firmware.bin ├── make_firmware_image.py ├── rapid_loader.bin ├── rapid_loader.bin.bak ├── rapid_loader_40m.bin └── readme.txt ├── eagle.app.v6.asm ├── esp-01.jpg ├── esptool.py ├── include ├── arch │ ├── cc.h │ ├── perf.h │ └── sys_arch.h ├── bios.h ├── bios │ ├── add_funcs.h │ ├── cha1.h │ ├── ets.h │ ├── gpio.h │ ├── mem.h │ ├── rom_phy.h │ ├── rtc_dtm.h │ ├── spiflash.h │ ├── uart.h │ ├── vectors.h │ ├── xthal.h │ └── xtos.h ├── c_types.h ├── ets_sys.h ├── gpio.h ├── hw │ ├── core-isa.h │ ├── corebits.h │ ├── eagle_soc.h │ ├── eagle_soc_.h │ ├── esp8266.h │ ├── gpio_register.h │ ├── i2s_reg.h │ ├── pin_mux_register.h │ ├── sdio_slv.h │ ├── slc_register.h │ ├── specreg.h │ ├── spi.h │ ├── spi_register.h │ ├── timer_register.h │ └── uart_register.h ├── iot_cloud.h ├── ip_addr.h ├── lwip │ ├── api.h │ ├── api_msg.h │ ├── app │ │ ├── dhcpserver.h │ │ ├── espconn.h │ │ ├── espconn_tcp.h │ │ ├── espconn_udp.h │ │ └── ping.h │ ├── arch.h │ ├── autoip.h │ ├── debug.h │ ├── def.h │ ├── dhcp.h │ ├── dns.h │ ├── err.h │ ├── icmp.h │ ├── igmp.h │ ├── inet.h │ ├── inet_chksum.h │ ├── init.h │ ├── ip.h │ ├── ip_addr.h │ ├── ip_frag.h │ ├── mdns.h │ ├── mem.h │ ├── memp.h │ ├── memp_std.h │ ├── netbuf.h │ ├── netdb.h │ ├── netif.h │ ├── netifapi.h │ ├── opt.h │ ├── pbuf.h │ ├── puck_def.h │ ├── raw.h │ ├── sio.h │ ├── snmp.h │ ├── snmp_asn1.h │ ├── snmp_msg.h │ ├── snmp_structs.h │ ├── sntp.h │ ├── sockets.h │ ├── stats.h │ ├── sys.h │ ├── tcp.h │ ├── tcp_impl.h │ ├── tcpip.h │ ├── timers.h │ └── udp.h ├── lwipopts.h ├── netif │ ├── etharp.h │ ├── if_llc.h │ ├── ppp_oe.h │ └── wlan_lwip_if.h ├── os_type.h ├── osapi.h ├── phy │ └── phy.h ├── pp │ └── esf_buf.h ├── queue.h ├── sdk │ ├── add_func.h │ ├── app_main.h │ ├── ets_run_new.h │ ├── fatal_errs.h │ ├── flash.h │ ├── libmain.h │ ├── mem_manager.h │ ├── os_printf.h │ ├── rom2ram.h │ ├── sdk_config.h │ ├── sys_const.h │ └── wdt.h ├── user_config.h └── user_interface.h ├── info ├── ESP8266_reg │ ├── ESP8266_Pin_List_141105.xlsx │ ├── ESP8266_RF_init_esp_init_data_default_bin.xlsx │ ├── gpio_reg.xlsx │ ├── pin_reg.xlsx │ ├── spi_reg.xlsx │ ├── timers_reg.xlsx │ └── uart_reg.xlsx ├── WebHTML │ ├── default.htm │ └── fsupload.htm ├── d3.zip ├── freq_corr_en.gif ├── libs │ ├── bios │ │ ├── SpiFlash.c │ │ ├── cha1.c │ │ ├── ets_run.c │ │ ├── gpio.c │ │ ├── mem.c │ │ ├── rtc_dtm.c │ │ ├── sip_slc.c │ │ ├── uartdev.c │ │ └── wdt.c │ ├── boot │ │ └── boot_1_2.c │ ├── flash_header.c │ ├── main │ │ ├── UserEnter.s │ │ ├── bags_Espressif_SDK.c │ │ ├── debug-vector.s │ │ ├── double-vector.s │ │ ├── kernel-vector.s │ │ ├── nmi-vector.s │ │ ├── nmi.c │ │ ├── startup.c │ │ ├── user-vector.s │ │ ├── user_interface.c │ │ └── wdt.c │ ├── net80211 │ │ ├── Descript.ion │ │ └── ieee80211_output.h │ └── phy │ │ ├── phy.c │ │ ├── phy_chip_v6.c │ │ ├── phy_get_vdd33.c │ │ ├── phy_sleep.c │ │ └── sar_read_fast.c └── smoothie-master.zip ├── ld ├── eagle.app.v6.ld ├── eagle.rom.addr.v6.ld ├── labels.ld └── overlay.ld ├── lib ├── clibsdk.bat ├── libcrypto.a ├── libdhcps.a ├── liblwipif.a ├── libmgcc.a ├── libmlwip.a ├── libmmain.a ├── libmmain.a.patch.txt ├── libmphy.a ├── libmwpa.a ├── libnet80211.a ├── libpp.a ├── libsdk.a ├── mlibsdk.bat ├── new_libdhcps.bat ├── new_liblwipif.bat ├── new_libmgcc.bat ├── new_libmlwip.bat ├── new_libmmain.bat ├── new_libmphy.bat ├── new_libmwpa.bat ├── o-asm.bat └── rom_files_list.txt ├── make_webfs_rs485.bat ├── make_webfs_tcp2uart.bat ├── mem.txt ├── mem_usage.bat ├── ovls.py ├── ovls └── ovls.7z ├── read_firmware.bat ├── uploader.py ├── webbin ├── Makefile ├── PVFSlib.7z ├── WEBFS22.zip ├── compress_java.bat ├── example_WEBFiles.bin ├── example_iot_cloud.ini ├── iot_cloud.ini ├── web_vars.txt └── yuicompressor.jar ├── webfs ├── README.md ├── webfs_upload1.py └── webfs_upload2.py ├── webvars_rs485.xlsx └── webvars_tcp2uart.xlsx /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.cproject -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/.settings/org.eclipse.cdt.managedbuilder.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /10leds_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/10leds_ru.txt -------------------------------------------------------------------------------- /AutoMake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/AutoMake.bat -------------------------------------------------------------------------------- /ESP-01_RS-485_sch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ESP-01_RS-485_sch.gif -------------------------------------------------------------------------------- /ESP-ADC-192kHz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ESP-ADC-192kHz.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/LICENSE -------------------------------------------------------------------------------- /Led_holder.scdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/Led_holder.scdoc -------------------------------------------------------------------------------- /Led_holder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/Led_holder.stl -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/Makefile -------------------------------------------------------------------------------- /PowerMeter-SPI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/PowerMeter-SPI.jpg -------------------------------------------------------------------------------- /PowerMeter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/PowerMeter.jpg -------------------------------------------------------------------------------- /Power_Light_start_2sec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/Power_Light_start_2sec.gif -------------------------------------------------------------------------------- /Power_ST_AP_ReConnect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/Power_ST_AP_ReConnect.gif -------------------------------------------------------------------------------- /ProgBin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ProgBin.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/README.md -------------------------------------------------------------------------------- /README_esp8266web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/README_esp8266web.md -------------------------------------------------------------------------------- /WEBFS22.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFS22.exe -------------------------------------------------------------------------------- /WEBFiles/$js.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/$js.inc -------------------------------------------------------------------------------- /WEBFiles/404.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/404.htm -------------------------------------------------------------------------------- /WEBFiles/adc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/adc.htm -------------------------------------------------------------------------------- /WEBFiles/adc.wav: -------------------------------------------------------------------------------- 1 | ~test_adc~ -------------------------------------------------------------------------------- /WEBFiles/adc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/adc.xml -------------------------------------------------------------------------------- /WEBFiles/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/cookies.js -------------------------------------------------------------------------------- /WEBFiles/disk_er1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/disk_er1.htm -------------------------------------------------------------------------------- /WEBFiles/disk_er2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/disk_er2.htm -------------------------------------------------------------------------------- /WEBFiles/disk_er3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/disk_er3.htm -------------------------------------------------------------------------------- /WEBFiles/disk_ok.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/disk_ok.htm -------------------------------------------------------------------------------- /WEBFiles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/favicon.ico -------------------------------------------------------------------------------- /WEBFiles/footer.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /WEBFiles/grf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/grf.js -------------------------------------------------------------------------------- /WEBFiles/grfx1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/grfx1.inc -------------------------------------------------------------------------------- /WEBFiles/grfx2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/grfx2.inc -------------------------------------------------------------------------------- /WEBFiles/heap.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/heap.htm -------------------------------------------------------------------------------- /WEBFiles/heap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/heap.xml -------------------------------------------------------------------------------- /WEBFiles/history.csv: -------------------------------------------------------------------------------- 1 | ~bin_history~ -------------------------------------------------------------------------------- /WEBFiles/history.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/history.htm -------------------------------------------------------------------------------- /WEBFiles/historycnt.csv: -------------------------------------------------------------------------------- 1 | ~bin_historycnt~ -------------------------------------------------------------------------------- /WEBFiles/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/index.htm -------------------------------------------------------------------------------- /WEBFiles/lastkwt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/lastkwt.htm -------------------------------------------------------------------------------- /WEBFiles/lastkwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/lastkwt.xml -------------------------------------------------------------------------------- /WEBFiles/led.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/led.xml -------------------------------------------------------------------------------- /WEBFiles/leds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/leds.xml -------------------------------------------------------------------------------- /WEBFiles/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/logo.gif -------------------------------------------------------------------------------- /WEBFiles/menu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/menu.inc -------------------------------------------------------------------------------- /WEBFiles/menumain.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/menumain.inc -------------------------------------------------------------------------------- /WEBFiles/powercnt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/powercnt.htm -------------------------------------------------------------------------------- /WEBFiles/powercnt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/powercnt.xml -------------------------------------------------------------------------------- /WEBFiles/protect/aps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/aps.xml -------------------------------------------------------------------------------- /WEBFiles/protect/chiprams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/chiprams.xml -------------------------------------------------------------------------------- /WEBFiles/protect/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/cookie.js -------------------------------------------------------------------------------- /WEBFiles/protect/debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/debug.htm -------------------------------------------------------------------------------- /WEBFiles/protect/debugram.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/debugram.htm -------------------------------------------------------------------------------- /WEBFiles/protect/debugram.txt: -------------------------------------------------------------------------------- 1 | ~dbg_ram~ -------------------------------------------------------------------------------- /WEBFiles/protect/dsleep.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/dsleep.htm -------------------------------------------------------------------------------- /WEBFiles/protect/esp_init_data_default.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_const~ -------------------------------------------------------------------------------- /WEBFiles/protect/fram_all.bin: -------------------------------------------------------------------------------- 1 | ~bin_fram_all~ -------------------------------------------------------------------------------- /WEBFiles/protect/fullflash.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_all~ -------------------------------------------------------------------------------- /WEBFiles/protect/gpio.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/gpio.htm -------------------------------------------------------------------------------- /WEBFiles/protect/gpio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/gpio.xml -------------------------------------------------------------------------------- /WEBFiles/protect/hexdmpb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/hexdmpb.htm -------------------------------------------------------------------------------- /WEBFiles/protect/hexdmpb.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpb~ -------------------------------------------------------------------------------- /WEBFiles/protect/hexdmpd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/hexdmpd.htm -------------------------------------------------------------------------------- /WEBFiles/protect/hexdmpd.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpd~ -------------------------------------------------------------------------------- /WEBFiles/protect/init.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WEBFiles/protect/pr_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/pr_request.xml -------------------------------------------------------------------------------- /WEBFiles/protect/ram.bin: -------------------------------------------------------------------------------- 1 | ~bin_ram~ -------------------------------------------------------------------------------- /WEBFiles/protect/rfinit1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/rfinit1.htm -------------------------------------------------------------------------------- /WEBFiles/protect/rfinit2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/rfinit2.htm -------------------------------------------------------------------------------- /WEBFiles/protect/rfinit3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/rfinit3.htm -------------------------------------------------------------------------------- /WEBFiles/protect/scan.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/scan.htm -------------------------------------------------------------------------------- /WEBFiles/protect/scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/scan.xml -------------------------------------------------------------------------------- /WEBFiles/protect/setmeter.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/setmeter.htm -------------------------------------------------------------------------------- /WEBFiles/protect/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/setup.htm -------------------------------------------------------------------------------- /WEBFiles/protect/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/system.xml -------------------------------------------------------------------------------- /WEBFiles/protect/uart.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/uart.htm -------------------------------------------------------------------------------- /WEBFiles/protect/upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/upload.htm -------------------------------------------------------------------------------- /WEBFiles/protect/wifi.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/protect/wifi.htm -------------------------------------------------------------------------------- /WEBFiles/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/scripts.js -------------------------------------------------------------------------------- /WEBFiles/settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/settings.htm -------------------------------------------------------------------------------- /WEBFiles/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/site.js -------------------------------------------------------------------------------- /WEBFiles/slider.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/slider.inc -------------------------------------------------------------------------------- /WEBFiles/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/slider.js -------------------------------------------------------------------------------- /WEBFiles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/style.css -------------------------------------------------------------------------------- /WEBFiles/time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/time.inc -------------------------------------------------------------------------------- /WEBFiles/timeout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/timeout.htm -------------------------------------------------------------------------------- /WEBFiles/timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/timer.inc -------------------------------------------------------------------------------- /WEBFiles/tst.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/tst.htm -------------------------------------------------------------------------------- /WEBFiles/tst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/tst.xml -------------------------------------------------------------------------------- /WEBFiles/vdd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/vdd.htm -------------------------------------------------------------------------------- /WEBFiles/vdd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/vdd.inc -------------------------------------------------------------------------------- /WEBFiles/vdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFiles/vdd.xml -------------------------------------------------------------------------------- /WEBFilesRS485/$js.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/$js.inc -------------------------------------------------------------------------------- /WEBFilesRS485/404.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/404.htm -------------------------------------------------------------------------------- /WEBFilesRS485/adc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/adc.htm -------------------------------------------------------------------------------- /WEBFilesRS485/adc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/adc.xml -------------------------------------------------------------------------------- /WEBFilesRS485/disk_er1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/disk_er1.htm -------------------------------------------------------------------------------- /WEBFilesRS485/disk_er2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/disk_er2.htm -------------------------------------------------------------------------------- /WEBFilesRS485/disk_er3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/disk_er3.htm -------------------------------------------------------------------------------- /WEBFilesRS485/disk_ok.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/disk_ok.htm -------------------------------------------------------------------------------- /WEBFilesRS485/esp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/esp.gif -------------------------------------------------------------------------------- /WEBFilesRS485/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/favicon.ico -------------------------------------------------------------------------------- /WEBFilesRS485/footer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/footer.inc -------------------------------------------------------------------------------- /WEBFilesRS485/grf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/grf.js -------------------------------------------------------------------------------- /WEBFilesRS485/grfx1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/grfx1.inc -------------------------------------------------------------------------------- /WEBFilesRS485/grfx2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/grfx2.inc -------------------------------------------------------------------------------- /WEBFilesRS485/heap.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/heap.htm -------------------------------------------------------------------------------- /WEBFilesRS485/heap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/heap.xml -------------------------------------------------------------------------------- /WEBFilesRS485/help/webvars.files/filelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/help/webvars.files/filelist.xml -------------------------------------------------------------------------------- /WEBFilesRS485/help/webvars.files/sheet001.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/help/webvars.files/sheet001.htm -------------------------------------------------------------------------------- /WEBFilesRS485/help/webvars.files/sheet002.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/help/webvars.files/sheet002.htm -------------------------------------------------------------------------------- /WEBFilesRS485/help/webvars.files/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/help/webvars.files/stylesheet.css -------------------------------------------------------------------------------- /WEBFilesRS485/help/webvars.files/tabstrip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/help/webvars.files/tabstrip.htm -------------------------------------------------------------------------------- /WEBFilesRS485/help/webvars.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/help/webvars.htm -------------------------------------------------------------------------------- /WEBFilesRS485/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/index.htm -------------------------------------------------------------------------------- /WEBFilesRS485/led.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/led.xml -------------------------------------------------------------------------------- /WEBFilesRS485/leds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/leds.xml -------------------------------------------------------------------------------- /WEBFilesRS485/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/logo.gif -------------------------------------------------------------------------------- /WEBFilesRS485/menu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/menu.inc -------------------------------------------------------------------------------- /WEBFilesRS485/protect/aps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/aps.xml -------------------------------------------------------------------------------- /WEBFilesRS485/protect/chiprams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/chiprams.xml -------------------------------------------------------------------------------- /WEBFilesRS485/protect/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/cookie.js -------------------------------------------------------------------------------- /WEBFilesRS485/protect/debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/debug.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/dsleep.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/dsleep.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/esp_init_data_default.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_const~ -------------------------------------------------------------------------------- /WEBFilesRS485/protect/fullflash.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_all~ -------------------------------------------------------------------------------- /WEBFilesRS485/protect/gpio.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/gpio.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/gpio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/gpio.xml -------------------------------------------------------------------------------- /WEBFilesRS485/protect/hexdmpb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/hexdmpb.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/hexdmpb.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpb~ -------------------------------------------------------------------------------- /WEBFilesRS485/protect/hexdmpd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/hexdmpd.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/hexdmpd.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpd~ -------------------------------------------------------------------------------- /WEBFilesRS485/protect/init.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/init.ini -------------------------------------------------------------------------------- /WEBFilesRS485/protect/mdb.bin: -------------------------------------------------------------------------------- 1 | ~bin_mdb~ -------------------------------------------------------------------------------- /WEBFilesRS485/protect/mdb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/mdb.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/mdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/mdb.xml -------------------------------------------------------------------------------- /WEBFilesRS485/protect/mdbh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/mdbh.xml -------------------------------------------------------------------------------- /WEBFilesRS485/protect/mdbtrn.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/mdbtrn.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/mdbtst.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/mdbtst.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/pr_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/pr_request.xml -------------------------------------------------------------------------------- /WEBFilesRS485/protect/ram.bin: -------------------------------------------------------------------------------- 1 | ~bin_ram~ -------------------------------------------------------------------------------- /WEBFilesRS485/protect/rfinit1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/rfinit1.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/rfinit2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/rfinit2.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/rfinit3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/rfinit3.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/scan.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/scan.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/scan.xml -------------------------------------------------------------------------------- /WEBFilesRS485/protect/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/setup.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/tstfuncs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/tstfuncs.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/uart.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/uart.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/upload.htm -------------------------------------------------------------------------------- /WEBFilesRS485/protect/wifi.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/protect/wifi.htm -------------------------------------------------------------------------------- /WEBFilesRS485/sample.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/sample.htm -------------------------------------------------------------------------------- /WEBFilesRS485/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/scripts.js -------------------------------------------------------------------------------- /WEBFilesRS485/sht7x.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/sht7x.ovl -------------------------------------------------------------------------------- /WEBFilesRS485/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/site.js -------------------------------------------------------------------------------- /WEBFilesRS485/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/style.css -------------------------------------------------------------------------------- /WEBFilesRS485/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/system.xml -------------------------------------------------------------------------------- /WEBFilesRS485/time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/time.inc -------------------------------------------------------------------------------- /WEBFilesRS485/timeout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/timeout.htm -------------------------------------------------------------------------------- /WEBFilesRS485/timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/timer.inc -------------------------------------------------------------------------------- /WEBFilesRS485/tst.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/tst.htm -------------------------------------------------------------------------------- /WEBFilesRS485/tst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/tst.xml -------------------------------------------------------------------------------- /WEBFilesRS485/udptp.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/udptp.ovl -------------------------------------------------------------------------------- /WEBFilesRS485/vdd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/vdd.htm -------------------------------------------------------------------------------- /WEBFilesRS485/vdd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/vdd.inc -------------------------------------------------------------------------------- /WEBFilesRS485/vdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/vdd.xml -------------------------------------------------------------------------------- /WEBFilesRS485/wdrv.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/wdrv.ovl -------------------------------------------------------------------------------- /WEBFilesRS485/websock.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/websock.htm -------------------------------------------------------------------------------- /WEBFilesRS485/ws2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesRS485/ws2.css -------------------------------------------------------------------------------- /WEBFilesTCP2UART/$js.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/$js.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/404.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/404.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/adc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/adc.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/adc.wav: -------------------------------------------------------------------------------- 1 | ~test_adc~ -------------------------------------------------------------------------------- /WEBFilesTCP2UART/adc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/adc.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/disk_er1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/disk_er1.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/disk_er2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/disk_er2.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/disk_er3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/disk_er3.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/disk_ok.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/disk_ok.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/esp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/esp.gif -------------------------------------------------------------------------------- /WEBFilesTCP2UART/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/favicon.ico -------------------------------------------------------------------------------- /WEBFilesTCP2UART/footer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/footer.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/grf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/grf.js -------------------------------------------------------------------------------- /WEBFilesTCP2UART/grfx1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/grfx1.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/grfx2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/grfx2.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/heap.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/heap.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/heap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/heap.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/help/webvars.files/filelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/help/webvars.files/filelist.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/help/webvars.files/sheet001.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/help/webvars.files/sheet001.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/help/webvars.files/sheet002.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/help/webvars.files/sheet002.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/help/webvars.files/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/help/webvars.files/stylesheet.css -------------------------------------------------------------------------------- /WEBFilesTCP2UART/help/webvars.files/tabstrip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/help/webvars.files/tabstrip.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/help/webvars.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/help/webvars.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/ina219.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/ina219.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/ina219.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/ina219.ovl -------------------------------------------------------------------------------- /WEBFilesTCP2UART/ina219.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/ina219.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/index.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/led.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/led.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/leds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/leds.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/logo.gif -------------------------------------------------------------------------------- /WEBFilesTCP2UART/menu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/menu.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/10leds.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/10leds.ini -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/aps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/aps.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/chiprams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/chiprams.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/cookie.js -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/debug.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/dsleep.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/dsleep.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/esp_init_data_default.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_const~ -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/fullflash.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_all~ -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/gpio.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/gpio.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/gpio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/gpio.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/hexdmpb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/hexdmpb.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/hexdmpb.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpb~ -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/hexdmpd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/hexdmpd.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/hexdmpd.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpd~ -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/init.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/init.ini -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/mdb.bin: -------------------------------------------------------------------------------- 1 | ~bin_mdb~ -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/mdb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/mdb.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/mdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/mdb.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/mdbh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/mdbh.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/pr_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/pr_request.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/ram.bin: -------------------------------------------------------------------------------- 1 | ~bin_ram~ -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/rfinit1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/rfinit1.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/rfinit2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/rfinit2.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/rfinit3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/rfinit3.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/scan.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/scan.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/scan.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/setup.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/tstfuncs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/tstfuncs.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/uart.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/uart.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/udpwave.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/udpwave.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/upload.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/protect/wifi.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/protect/wifi.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/sample.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/sample.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/scripts.js -------------------------------------------------------------------------------- /WEBFilesTCP2UART/sht7x.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/sht7x.ovl -------------------------------------------------------------------------------- /WEBFilesTCP2UART/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/site.js -------------------------------------------------------------------------------- /WEBFilesTCP2UART/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/style.css -------------------------------------------------------------------------------- /WEBFilesTCP2UART/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/system.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/time.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/timeout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/timeout.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/timer.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/tst.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/tst.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/tst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/tst.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/udptp.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/udptp.ovl -------------------------------------------------------------------------------- /WEBFilesTCP2UART/vdd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/vdd.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/vdd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/vdd.inc -------------------------------------------------------------------------------- /WEBFilesTCP2UART/vdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/vdd.xml -------------------------------------------------------------------------------- /WEBFilesTCP2UART/wdrv.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/wdrv.ovl -------------------------------------------------------------------------------- /WEBFilesTCP2UART/websock.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/websock.htm -------------------------------------------------------------------------------- /WEBFilesTCP2UART/ws2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesTCP2UART/ws2.css -------------------------------------------------------------------------------- /WEBFilesWeb/$js.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/$js.inc -------------------------------------------------------------------------------- /WEBFilesWeb/404.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/404.htm -------------------------------------------------------------------------------- /WEBFilesWeb/adc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/adc.htm -------------------------------------------------------------------------------- /WEBFilesWeb/adc.wav: -------------------------------------------------------------------------------- 1 | ~test_adc~ -------------------------------------------------------------------------------- /WEBFilesWeb/adc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/adc.xml -------------------------------------------------------------------------------- /WEBFilesWeb/disk_er1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/disk_er1.htm -------------------------------------------------------------------------------- /WEBFilesWeb/disk_er2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/disk_er2.htm -------------------------------------------------------------------------------- /WEBFilesWeb/disk_er3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/disk_er3.htm -------------------------------------------------------------------------------- /WEBFilesWeb/disk_ok.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/disk_ok.htm -------------------------------------------------------------------------------- /WEBFilesWeb/esp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/esp.gif -------------------------------------------------------------------------------- /WEBFilesWeb/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/favicon.ico -------------------------------------------------------------------------------- /WEBFilesWeb/footer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/footer.inc -------------------------------------------------------------------------------- /WEBFilesWeb/grf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/grf.js -------------------------------------------------------------------------------- /WEBFilesWeb/grfx1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/grfx1.inc -------------------------------------------------------------------------------- /WEBFilesWeb/grfx2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/grfx2.inc -------------------------------------------------------------------------------- /WEBFilesWeb/heap.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/heap.htm -------------------------------------------------------------------------------- /WEBFilesWeb/heap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/heap.xml -------------------------------------------------------------------------------- /WEBFilesWeb/help/webvars.files/filelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/help/webvars.files/filelist.xml -------------------------------------------------------------------------------- /WEBFilesWeb/help/webvars.files/sheet001.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/help/webvars.files/sheet001.htm -------------------------------------------------------------------------------- /WEBFilesWeb/help/webvars.files/sheet002.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/help/webvars.files/sheet002.htm -------------------------------------------------------------------------------- /WEBFilesWeb/help/webvars.files/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/help/webvars.files/stylesheet.css -------------------------------------------------------------------------------- /WEBFilesWeb/help/webvars.files/tabstrip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/help/webvars.files/tabstrip.htm -------------------------------------------------------------------------------- /WEBFilesWeb/help/webvars.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/help/webvars.htm -------------------------------------------------------------------------------- /WEBFilesWeb/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/index.htm -------------------------------------------------------------------------------- /WEBFilesWeb/led.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/led.xml -------------------------------------------------------------------------------- /WEBFilesWeb/leds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/leds.xml -------------------------------------------------------------------------------- /WEBFilesWeb/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/logo.gif -------------------------------------------------------------------------------- /WEBFilesWeb/menu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/menu.inc -------------------------------------------------------------------------------- /WEBFilesWeb/protect/10leds.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/10leds.ini -------------------------------------------------------------------------------- /WEBFilesWeb/protect/aps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/aps.xml -------------------------------------------------------------------------------- /WEBFilesWeb/protect/chiprams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/chiprams.xml -------------------------------------------------------------------------------- /WEBFilesWeb/protect/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/cookie.js -------------------------------------------------------------------------------- /WEBFilesWeb/protect/debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/debug.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/dsleep.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/dsleep.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/esp_init_data_default.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_const~ -------------------------------------------------------------------------------- /WEBFilesWeb/protect/fullflash.bin: -------------------------------------------------------------------------------- 1 | ~bin_flash_all~ -------------------------------------------------------------------------------- /WEBFilesWeb/protect/gpio.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/gpio.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/gpio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/gpio.xml -------------------------------------------------------------------------------- /WEBFilesWeb/protect/hexdmpb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/hexdmpb.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/hexdmpb.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpb~ -------------------------------------------------------------------------------- /WEBFilesWeb/protect/hexdmpd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/hexdmpd.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/hexdmpd.txt: -------------------------------------------------------------------------------- 1 | ~hexdmpd~ -------------------------------------------------------------------------------- /WEBFilesWeb/protect/init.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/init.ini -------------------------------------------------------------------------------- /WEBFilesWeb/protect/mdb.bin: -------------------------------------------------------------------------------- 1 | ~bin_mdb~ -------------------------------------------------------------------------------- /WEBFilesWeb/protect/mdb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/mdb.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/mdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/mdb.xml -------------------------------------------------------------------------------- /WEBFilesWeb/protect/mdbh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/mdbh.xml -------------------------------------------------------------------------------- /WEBFilesWeb/protect/pr_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/pr_request.xml -------------------------------------------------------------------------------- /WEBFilesWeb/protect/ram.bin: -------------------------------------------------------------------------------- 1 | ~bin_ram~ -------------------------------------------------------------------------------- /WEBFilesWeb/protect/rfinit1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/rfinit1.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/rfinit2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/rfinit2.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/rfinit3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/rfinit3.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/scan.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/scan.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/scan.xml -------------------------------------------------------------------------------- /WEBFilesWeb/protect/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/setup.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/tstfuncs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/tstfuncs.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/uart.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/uart.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/udpwave.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/udpwave.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/upload.htm -------------------------------------------------------------------------------- /WEBFilesWeb/protect/wifi.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/protect/wifi.htm -------------------------------------------------------------------------------- /WEBFilesWeb/sample.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/sample.htm -------------------------------------------------------------------------------- /WEBFilesWeb/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/scripts.js -------------------------------------------------------------------------------- /WEBFilesWeb/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/site.js -------------------------------------------------------------------------------- /WEBFilesWeb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/style.css -------------------------------------------------------------------------------- /WEBFilesWeb/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/system.xml -------------------------------------------------------------------------------- /WEBFilesWeb/time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/time.inc -------------------------------------------------------------------------------- /WEBFilesWeb/timeout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/timeout.htm -------------------------------------------------------------------------------- /WEBFilesWeb/timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/timer.inc -------------------------------------------------------------------------------- /WEBFilesWeb/tst.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/tst.htm -------------------------------------------------------------------------------- /WEBFilesWeb/tst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/tst.xml -------------------------------------------------------------------------------- /WEBFilesWeb/vdd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/vdd.htm -------------------------------------------------------------------------------- /WEBFilesWeb/vdd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/vdd.inc -------------------------------------------------------------------------------- /WEBFilesWeb/vdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/vdd.xml -------------------------------------------------------------------------------- /WEBFilesWeb/websock.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WEBFilesWeb/websock.htm -------------------------------------------------------------------------------- /WebSocket/ws2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WebSocket/ws2.css -------------------------------------------------------------------------------- /WebSocket/ws2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/WebSocket/ws2.htm -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | *.output* 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/Makefile -------------------------------------------------------------------------------- /app/NULL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/Makefile -------------------------------------------------------------------------------- /app/driver/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/adc.c -------------------------------------------------------------------------------- /app/driver/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/eeprom.c -------------------------------------------------------------------------------- /app/driver/gpio16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/gpio16.c -------------------------------------------------------------------------------- /app/driver/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/i2c.c -------------------------------------------------------------------------------- /app/driver/int_time_us.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/int_time_us.c -------------------------------------------------------------------------------- /app/driver/rs485drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/rs485drv.c -------------------------------------------------------------------------------- /app/driver/sigma_delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/sigma_delta.c -------------------------------------------------------------------------------- /app/driver/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/driver/spi.c -------------------------------------------------------------------------------- /app/gdbstub/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/License -------------------------------------------------------------------------------- /app/gdbstub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/Makefile -------------------------------------------------------------------------------- /app/gdbstub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/README.md -------------------------------------------------------------------------------- /app/gdbstub/eagle_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/eagle_soc.h -------------------------------------------------------------------------------- /app/gdbstub/gdbcmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/gdbcmds -------------------------------------------------------------------------------- /app/gdbstub/gdbstub-cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/gdbstub-cfg.h -------------------------------------------------------------------------------- /app/gdbstub/gdbstub-entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/gdbstub-entry.S -------------------------------------------------------------------------------- /app/gdbstub/gdbstub-entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/gdbstub-entry.h -------------------------------------------------------------------------------- /app/gdbstub/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/gdbstub.c -------------------------------------------------------------------------------- /app/gdbstub/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/gdbstub/gdbstub.h -------------------------------------------------------------------------------- /app/include/captdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/captdns.h -------------------------------------------------------------------------------- /app/include/debug_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/debug_ram.h -------------------------------------------------------------------------------- /app/include/driver/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/adc.h -------------------------------------------------------------------------------- /app/include/driver/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/eeprom.h -------------------------------------------------------------------------------- /app/include/driver/gpio16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/gpio16.h -------------------------------------------------------------------------------- /app/include/driver/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/i2c.h -------------------------------------------------------------------------------- /app/include/driver/int_time_us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/int_time_us.h -------------------------------------------------------------------------------- /app/include/driver/rs485drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/rs485drv.h -------------------------------------------------------------------------------- /app/include/driver/sigma_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/sigma_delta.h -------------------------------------------------------------------------------- /app/include/driver/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/spi.h -------------------------------------------------------------------------------- /app/include/driver/spi_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/spi_readme.txt -------------------------------------------------------------------------------- /app/include/driver/spi_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/driver/spi_register.h -------------------------------------------------------------------------------- /app/include/flash_eep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/flash_eep.h -------------------------------------------------------------------------------- /app/include/mdbrs485.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/mdbrs485.h -------------------------------------------------------------------------------- /app/include/mdbtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/mdbtab.h -------------------------------------------------------------------------------- /app/include/modbusrtu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/modbusrtu.h -------------------------------------------------------------------------------- /app/include/modbustcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/modbustcp.h -------------------------------------------------------------------------------- /app/include/netbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/netbios.h -------------------------------------------------------------------------------- /app/include/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/overlay.h -------------------------------------------------------------------------------- /app/include/power_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/power_meter.h -------------------------------------------------------------------------------- /app/include/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/sntp.h -------------------------------------------------------------------------------- /app/include/sys_const_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/sys_const_utils.h -------------------------------------------------------------------------------- /app/include/tcp2uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/tcp2uart.h -------------------------------------------------------------------------------- /app/include/tcp_srv_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/tcp_srv_conn.h -------------------------------------------------------------------------------- /app/include/web_fs_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/web_fs_init.h -------------------------------------------------------------------------------- /app/include/web_iohw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/web_iohw.h -------------------------------------------------------------------------------- /app/include/web_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/web_srv.h -------------------------------------------------------------------------------- /app/include/web_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/web_utils.h -------------------------------------------------------------------------------- /app/include/web_websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/web_websocket.h -------------------------------------------------------------------------------- /app/include/webfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/webfs.h -------------------------------------------------------------------------------- /app/include/websock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/websock.h -------------------------------------------------------------------------------- /app/include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/wifi.h -------------------------------------------------------------------------------- /app/include/wifi_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/include/wifi_events.h -------------------------------------------------------------------------------- /app/mdbtcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/mdbtcp/Makefile -------------------------------------------------------------------------------- /app/mdbtcp/mdbfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/mdbtcp/mdbfunc.c -------------------------------------------------------------------------------- /app/mdbtcp/mdbrs485.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/mdbtcp/mdbrs485.c -------------------------------------------------------------------------------- /app/mdbtcp/mdbtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/mdbtcp/mdbtab.c -------------------------------------------------------------------------------- /app/mdbtcp/modbustcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/mdbtcp/modbustcp.c -------------------------------------------------------------------------------- /app/sdklib/.gitignore: -------------------------------------------------------------------------------- 1 | *.output* 2 | -------------------------------------------------------------------------------- /app/sdklib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/Makefile -------------------------------------------------------------------------------- /app/sdklib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/README.md -------------------------------------------------------------------------------- /app/sdklib/lwip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/COPYING -------------------------------------------------------------------------------- /app/sdklib/lwip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/Makefile -------------------------------------------------------------------------------- /app/sdklib/lwip/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/Makefile -------------------------------------------------------------------------------- /app/sdklib/lwip/api/api_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/api_lib.c -------------------------------------------------------------------------------- /app/sdklib/lwip/api/api_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/api_msg.c -------------------------------------------------------------------------------- /app/sdklib/lwip/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/err.c -------------------------------------------------------------------------------- /app/sdklib/lwip/api/netbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/netbuf.c -------------------------------------------------------------------------------- /app/sdklib/lwip/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/netdb.c -------------------------------------------------------------------------------- /app/sdklib/lwip/api/netifapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/netifapi.c -------------------------------------------------------------------------------- /app/sdklib/lwip/api/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/sockets.c -------------------------------------------------------------------------------- /app/sdklib/lwip/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/api/tcpip.c -------------------------------------------------------------------------------- /app/sdklib/lwip/app/Espressif.License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/Espressif.License -------------------------------------------------------------------------------- /app/sdklib/lwip/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/Makefile -------------------------------------------------------------------------------- /app/sdklib/lwip/app/dhcpserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/dhcpserver.c -------------------------------------------------------------------------------- /app/sdklib/lwip/app/espconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/espconn.c -------------------------------------------------------------------------------- /app/sdklib/lwip/app/espconn_mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/espconn_mdns.c -------------------------------------------------------------------------------- /app/sdklib/lwip/app/espconn_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/espconn_tcp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/app/espconn_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/espconn_udp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/app/netio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/netio.c -------------------------------------------------------------------------------- /app/sdklib/lwip/app/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/app/ping.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/Makefile -------------------------------------------------------------------------------- /app/sdklib/lwip/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/def.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/dhcp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/dns.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/init.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/Makefile -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/autoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/autoip.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/icmp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/igmp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/inet.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/inet_chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/inet_chksum.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/ip.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/ip_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/ip_addr.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/ipv4/ip_frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/ipv4/ip_frag.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/mdns.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/mem.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/memp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/netif.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/pbuf.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/raw.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/sntp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/stats.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/sys.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/tcp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/tcp_in.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/tcp_out.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/timers.c -------------------------------------------------------------------------------- /app/sdklib/lwip/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/core/udp.c -------------------------------------------------------------------------------- /app/sdklib/lwip/netif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/netif/Makefile -------------------------------------------------------------------------------- /app/sdklib/lwip/netif/etharp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/lwip/netif/etharp.c -------------------------------------------------------------------------------- /app/sdklib/phy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/phy/Makefile -------------------------------------------------------------------------------- /app/sdklib/phy/phy_chip_v6_unused.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/phy/phy_chip_v6_unused.c -------------------------------------------------------------------------------- /app/sdklib/pp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/pp/Makefile -------------------------------------------------------------------------------- /app/sdklib/pp/pplibadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/pp/pplibadd.c -------------------------------------------------------------------------------- /app/sdklib/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/Makefile -------------------------------------------------------------------------------- /app/sdklib/system/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/app_main.c -------------------------------------------------------------------------------- /app/sdklib/system/eagle_lwip_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/eagle_lwip_if.c -------------------------------------------------------------------------------- /app/sdklib/system/ets_run_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/ets_run_new.c -------------------------------------------------------------------------------- /app/sdklib/system/ets_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/ets_timer.c -------------------------------------------------------------------------------- /app/sdklib/system/main-vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/main-vectors.c -------------------------------------------------------------------------------- /app/sdklib/system/mem_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/mem_manager.c -------------------------------------------------------------------------------- /app/sdklib/system/os_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/os_printf.c -------------------------------------------------------------------------------- /app/sdklib/system/rom2ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/rom2ram.c -------------------------------------------------------------------------------- /app/sdklib/system/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/spi_flash.c -------------------------------------------------------------------------------- /app/sdklib/system/spi_overlap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/spi_overlap.c -------------------------------------------------------------------------------- /app/sdklib/system/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/system/wdt.c -------------------------------------------------------------------------------- /app/sdklib/wpa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/wpa/Makefile -------------------------------------------------------------------------------- /app/sdklib/wpa/os_xtensa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/wpa/os_xtensa.c -------------------------------------------------------------------------------- /app/sdklib/wpa/wpa_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/sdklib/wpa/wpa_debug.c -------------------------------------------------------------------------------- /app/user/Include/udp_test_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/Include/udp_test_port.h -------------------------------------------------------------------------------- /app/user/Include/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/Include/ws2812.h -------------------------------------------------------------------------------- /app/user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/Makefile -------------------------------------------------------------------------------- /app/user/debug_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/debug_ram.c -------------------------------------------------------------------------------- /app/user/iot_cloud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/iot_cloud.c -------------------------------------------------------------------------------- /app/user/power_meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/power_meter.c -------------------------------------------------------------------------------- /app/user/tmp2net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/tmp2net.c -------------------------------------------------------------------------------- /app/user/udp_test_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/udp_test_port.c -------------------------------------------------------------------------------- /app/user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/user/user_main.c -------------------------------------------------------------------------------- /app/web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/Makefile -------------------------------------------------------------------------------- /app/web/captdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/captdns.c -------------------------------------------------------------------------------- /app/web/flash_eep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/flash_eep.c -------------------------------------------------------------------------------- /app/web/include/web_srv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/include/web_srv_int.h -------------------------------------------------------------------------------- /app/web/localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/localtime.c -------------------------------------------------------------------------------- /app/web/netbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/netbios.c -------------------------------------------------------------------------------- /app/web/overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/overlay.c -------------------------------------------------------------------------------- /app/web/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/sntp.c -------------------------------------------------------------------------------- /app/web/sys_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/sys_const.c -------------------------------------------------------------------------------- /app/web/tcp2uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/tcp2uart.c -------------------------------------------------------------------------------- /app/web/tcp_srv_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/tcp_srv_conn.c -------------------------------------------------------------------------------- /app/web/uart_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/uart_tcp.c -------------------------------------------------------------------------------- /app/web/web_fs_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/web_fs_init.c -------------------------------------------------------------------------------- /app/web/web_int_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/web_int_callbacks.c -------------------------------------------------------------------------------- /app/web/web_int_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/web_int_vars.c -------------------------------------------------------------------------------- /app/web/web_iohw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/web_iohw.c -------------------------------------------------------------------------------- /app/web/web_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/web_srv.c -------------------------------------------------------------------------------- /app/web/web_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/web_utils.c -------------------------------------------------------------------------------- /app/web/web_websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/web_websocket.c -------------------------------------------------------------------------------- /app/web/webfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/webfs.c -------------------------------------------------------------------------------- /app/web/websock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/websock.c -------------------------------------------------------------------------------- /app/web/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/wifi.c -------------------------------------------------------------------------------- /app/web/wifi_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/app/web/wifi_events.c -------------------------------------------------------------------------------- /asm_damp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/asm_damp.bat -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | 0.bin 2 | -------------------------------------------------------------------------------- /bin/0x00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/0x00000.bin -------------------------------------------------------------------------------- /bin/0x07000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/0x07000.bin -------------------------------------------------------------------------------- /bin/0x40000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/0x40000.bin -------------------------------------------------------------------------------- /bin/FRAM Test/0x00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/FRAM Test/0x00000.bin -------------------------------------------------------------------------------- /bin/FRAM Test/0x07000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/FRAM Test/0x07000.bin -------------------------------------------------------------------------------- /bin/FRAM Test/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/FRAM Test/firmware.bin -------------------------------------------------------------------------------- /bin/blank.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/blank.bin -------------------------------------------------------------------------------- /bin/clear_eep.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/clear_eep.bin -------------------------------------------------------------------------------- /bin/esp_init_data_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/esp_init_data_default.bin -------------------------------------------------------------------------------- /bin/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/firmware.bin -------------------------------------------------------------------------------- /bin/make_firmware_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/make_firmware_image.py -------------------------------------------------------------------------------- /bin/rapid_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/rapid_loader.bin -------------------------------------------------------------------------------- /bin/rapid_loader.bin.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/rapid_loader.bin.bak -------------------------------------------------------------------------------- /bin/rapid_loader_40m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/rapid_loader_40m.bin -------------------------------------------------------------------------------- /bin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/bin/readme.txt -------------------------------------------------------------------------------- /eagle.app.v6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/eagle.app.v6.asm -------------------------------------------------------------------------------- /esp-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/esp-01.jpg -------------------------------------------------------------------------------- /esptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/esptool.py -------------------------------------------------------------------------------- /include/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/arch/cc.h -------------------------------------------------------------------------------- /include/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/arch/perf.h -------------------------------------------------------------------------------- /include/arch/sys_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios.h -------------------------------------------------------------------------------- /include/bios/add_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/add_funcs.h -------------------------------------------------------------------------------- /include/bios/cha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/cha1.h -------------------------------------------------------------------------------- /include/bios/ets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/ets.h -------------------------------------------------------------------------------- /include/bios/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/gpio.h -------------------------------------------------------------------------------- /include/bios/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/mem.h -------------------------------------------------------------------------------- /include/bios/rom_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/rom_phy.h -------------------------------------------------------------------------------- /include/bios/rtc_dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/rtc_dtm.h -------------------------------------------------------------------------------- /include/bios/spiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/spiflash.h -------------------------------------------------------------------------------- /include/bios/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/uart.h -------------------------------------------------------------------------------- /include/bios/vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/vectors.h -------------------------------------------------------------------------------- /include/bios/xthal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/xthal.h -------------------------------------------------------------------------------- /include/bios/xtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/bios/xtos.h -------------------------------------------------------------------------------- /include/c_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/c_types.h -------------------------------------------------------------------------------- /include/ets_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/ets_sys.h -------------------------------------------------------------------------------- /include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/gpio.h -------------------------------------------------------------------------------- /include/hw/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/core-isa.h -------------------------------------------------------------------------------- /include/hw/corebits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/corebits.h -------------------------------------------------------------------------------- /include/hw/eagle_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/eagle_soc.h -------------------------------------------------------------------------------- /include/hw/eagle_soc_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/eagle_soc_.h -------------------------------------------------------------------------------- /include/hw/esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/esp8266.h -------------------------------------------------------------------------------- /include/hw/gpio_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/gpio_register.h -------------------------------------------------------------------------------- /include/hw/i2s_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/i2s_reg.h -------------------------------------------------------------------------------- /include/hw/pin_mux_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/pin_mux_register.h -------------------------------------------------------------------------------- /include/hw/sdio_slv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/sdio_slv.h -------------------------------------------------------------------------------- /include/hw/slc_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/slc_register.h -------------------------------------------------------------------------------- /include/hw/specreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/specreg.h -------------------------------------------------------------------------------- /include/hw/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/spi.h -------------------------------------------------------------------------------- /include/hw/spi_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/spi_register.h -------------------------------------------------------------------------------- /include/hw/timer_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/timer_register.h -------------------------------------------------------------------------------- /include/hw/uart_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/hw/uart_register.h -------------------------------------------------------------------------------- /include/iot_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/iot_cloud.h -------------------------------------------------------------------------------- /include/ip_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/ip_addr.h -------------------------------------------------------------------------------- /include/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/api.h -------------------------------------------------------------------------------- /include/lwip/api_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/api_msg.h -------------------------------------------------------------------------------- /include/lwip/app/dhcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/app/dhcpserver.h -------------------------------------------------------------------------------- /include/lwip/app/espconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/app/espconn.h -------------------------------------------------------------------------------- /include/lwip/app/espconn_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/app/espconn_tcp.h -------------------------------------------------------------------------------- /include/lwip/app/espconn_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/app/espconn_udp.h -------------------------------------------------------------------------------- /include/lwip/app/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/app/ping.h -------------------------------------------------------------------------------- /include/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/arch.h -------------------------------------------------------------------------------- /include/lwip/autoip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/autoip.h -------------------------------------------------------------------------------- /include/lwip/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/debug.h -------------------------------------------------------------------------------- /include/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/def.h -------------------------------------------------------------------------------- /include/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/dhcp.h -------------------------------------------------------------------------------- /include/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/dns.h -------------------------------------------------------------------------------- /include/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/err.h -------------------------------------------------------------------------------- /include/lwip/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/icmp.h -------------------------------------------------------------------------------- /include/lwip/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/igmp.h -------------------------------------------------------------------------------- /include/lwip/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/inet.h -------------------------------------------------------------------------------- /include/lwip/inet_chksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/inet_chksum.h -------------------------------------------------------------------------------- /include/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/init.h -------------------------------------------------------------------------------- /include/lwip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/ip.h -------------------------------------------------------------------------------- /include/lwip/ip_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/ip_addr.h -------------------------------------------------------------------------------- /include/lwip/ip_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/ip_frag.h -------------------------------------------------------------------------------- /include/lwip/mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/mdns.h -------------------------------------------------------------------------------- /include/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/mem.h -------------------------------------------------------------------------------- /include/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/memp.h -------------------------------------------------------------------------------- /include/lwip/memp_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/memp_std.h -------------------------------------------------------------------------------- /include/lwip/netbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/netbuf.h -------------------------------------------------------------------------------- /include/lwip/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/netdb.h -------------------------------------------------------------------------------- /include/lwip/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/netif.h -------------------------------------------------------------------------------- /include/lwip/netifapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/netifapi.h -------------------------------------------------------------------------------- /include/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/opt.h -------------------------------------------------------------------------------- /include/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/pbuf.h -------------------------------------------------------------------------------- /include/lwip/puck_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/puck_def.h -------------------------------------------------------------------------------- /include/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/raw.h -------------------------------------------------------------------------------- /include/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/sio.h -------------------------------------------------------------------------------- /include/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/snmp.h -------------------------------------------------------------------------------- /include/lwip/snmp_asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/snmp_asn1.h -------------------------------------------------------------------------------- /include/lwip/snmp_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/snmp_msg.h -------------------------------------------------------------------------------- /include/lwip/snmp_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/snmp_structs.h -------------------------------------------------------------------------------- /include/lwip/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/sntp.h -------------------------------------------------------------------------------- /include/lwip/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/sockets.h -------------------------------------------------------------------------------- /include/lwip/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/stats.h -------------------------------------------------------------------------------- /include/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/sys.h -------------------------------------------------------------------------------- /include/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/tcp.h -------------------------------------------------------------------------------- /include/lwip/tcp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/tcp_impl.h -------------------------------------------------------------------------------- /include/lwip/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/tcpip.h -------------------------------------------------------------------------------- /include/lwip/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/timers.h -------------------------------------------------------------------------------- /include/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwip/udp.h -------------------------------------------------------------------------------- /include/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/lwipopts.h -------------------------------------------------------------------------------- /include/netif/etharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/netif/etharp.h -------------------------------------------------------------------------------- /include/netif/if_llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/netif/if_llc.h -------------------------------------------------------------------------------- /include/netif/ppp_oe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/netif/ppp_oe.h -------------------------------------------------------------------------------- /include/netif/wlan_lwip_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/netif/wlan_lwip_if.h -------------------------------------------------------------------------------- /include/os_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/os_type.h -------------------------------------------------------------------------------- /include/osapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/osapi.h -------------------------------------------------------------------------------- /include/phy/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/phy/phy.h -------------------------------------------------------------------------------- /include/pp/esf_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/pp/esf_buf.h -------------------------------------------------------------------------------- /include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/queue.h -------------------------------------------------------------------------------- /include/sdk/add_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/add_func.h -------------------------------------------------------------------------------- /include/sdk/app_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/app_main.h -------------------------------------------------------------------------------- /include/sdk/ets_run_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/ets_run_new.h -------------------------------------------------------------------------------- /include/sdk/fatal_errs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/fatal_errs.h -------------------------------------------------------------------------------- /include/sdk/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/flash.h -------------------------------------------------------------------------------- /include/sdk/libmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/libmain.h -------------------------------------------------------------------------------- /include/sdk/mem_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/mem_manager.h -------------------------------------------------------------------------------- /include/sdk/os_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/os_printf.h -------------------------------------------------------------------------------- /include/sdk/rom2ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/rom2ram.h -------------------------------------------------------------------------------- /include/sdk/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/sdk_config.h -------------------------------------------------------------------------------- /include/sdk/sys_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/sys_const.h -------------------------------------------------------------------------------- /include/sdk/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/sdk/wdt.h -------------------------------------------------------------------------------- /include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/user_config.h -------------------------------------------------------------------------------- /include/user_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/include/user_interface.h -------------------------------------------------------------------------------- /info/ESP8266_reg/ESP8266_Pin_List_141105.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/ESP8266_reg/ESP8266_Pin_List_141105.xlsx -------------------------------------------------------------------------------- /info/ESP8266_reg/ESP8266_RF_init_esp_init_data_default_bin.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/ESP8266_reg/ESP8266_RF_init_esp_init_data_default_bin.xlsx -------------------------------------------------------------------------------- /info/ESP8266_reg/gpio_reg.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/ESP8266_reg/gpio_reg.xlsx -------------------------------------------------------------------------------- /info/ESP8266_reg/pin_reg.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/ESP8266_reg/pin_reg.xlsx -------------------------------------------------------------------------------- /info/ESP8266_reg/spi_reg.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/ESP8266_reg/spi_reg.xlsx -------------------------------------------------------------------------------- /info/ESP8266_reg/timers_reg.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/ESP8266_reg/timers_reg.xlsx -------------------------------------------------------------------------------- /info/ESP8266_reg/uart_reg.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/ESP8266_reg/uart_reg.xlsx -------------------------------------------------------------------------------- /info/WebHTML/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/WebHTML/default.htm -------------------------------------------------------------------------------- /info/WebHTML/fsupload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/WebHTML/fsupload.htm -------------------------------------------------------------------------------- /info/d3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/d3.zip -------------------------------------------------------------------------------- /info/freq_corr_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/freq_corr_en.gif -------------------------------------------------------------------------------- /info/libs/bios/SpiFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/SpiFlash.c -------------------------------------------------------------------------------- /info/libs/bios/cha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/cha1.c -------------------------------------------------------------------------------- /info/libs/bios/ets_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/ets_run.c -------------------------------------------------------------------------------- /info/libs/bios/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/gpio.c -------------------------------------------------------------------------------- /info/libs/bios/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/mem.c -------------------------------------------------------------------------------- /info/libs/bios/rtc_dtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/rtc_dtm.c -------------------------------------------------------------------------------- /info/libs/bios/sip_slc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/sip_slc.c -------------------------------------------------------------------------------- /info/libs/bios/uartdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/uartdev.c -------------------------------------------------------------------------------- /info/libs/bios/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/bios/wdt.c -------------------------------------------------------------------------------- /info/libs/boot/boot_1_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/boot/boot_1_2.c -------------------------------------------------------------------------------- /info/libs/flash_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/flash_header.c -------------------------------------------------------------------------------- /info/libs/main/UserEnter.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/UserEnter.s -------------------------------------------------------------------------------- /info/libs/main/bags_Espressif_SDK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/bags_Espressif_SDK.c -------------------------------------------------------------------------------- /info/libs/main/debug-vector.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/debug-vector.s -------------------------------------------------------------------------------- /info/libs/main/double-vector.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/double-vector.s -------------------------------------------------------------------------------- /info/libs/main/kernel-vector.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/kernel-vector.s -------------------------------------------------------------------------------- /info/libs/main/nmi-vector.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/nmi-vector.s -------------------------------------------------------------------------------- /info/libs/main/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/nmi.c -------------------------------------------------------------------------------- /info/libs/main/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/startup.c -------------------------------------------------------------------------------- /info/libs/main/user-vector.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/user-vector.s -------------------------------------------------------------------------------- /info/libs/main/user_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/user_interface.c -------------------------------------------------------------------------------- /info/libs/main/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/main/wdt.c -------------------------------------------------------------------------------- /info/libs/net80211/Descript.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/net80211/Descript.ion -------------------------------------------------------------------------------- /info/libs/net80211/ieee80211_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/net80211/ieee80211_output.h -------------------------------------------------------------------------------- /info/libs/phy/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/phy/phy.c -------------------------------------------------------------------------------- /info/libs/phy/phy_chip_v6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/phy/phy_chip_v6.c -------------------------------------------------------------------------------- /info/libs/phy/phy_get_vdd33.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/phy/phy_get_vdd33.c -------------------------------------------------------------------------------- /info/libs/phy/phy_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/phy/phy_sleep.c -------------------------------------------------------------------------------- /info/libs/phy/sar_read_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/libs/phy/sar_read_fast.c -------------------------------------------------------------------------------- /info/smoothie-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/info/smoothie-master.zip -------------------------------------------------------------------------------- /ld/eagle.app.v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ld/eagle.app.v6.ld -------------------------------------------------------------------------------- /ld/eagle.rom.addr.v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ld/eagle.rom.addr.v6.ld -------------------------------------------------------------------------------- /ld/labels.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ld/labels.ld -------------------------------------------------------------------------------- /ld/overlay.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ld/overlay.ld -------------------------------------------------------------------------------- /lib/clibsdk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/clibsdk.bat -------------------------------------------------------------------------------- /lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libcrypto.a -------------------------------------------------------------------------------- /lib/libdhcps.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libdhcps.a -------------------------------------------------------------------------------- /lib/liblwipif.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/liblwipif.a -------------------------------------------------------------------------------- /lib/libmgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libmgcc.a -------------------------------------------------------------------------------- /lib/libmlwip.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libmlwip.a -------------------------------------------------------------------------------- /lib/libmmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libmmain.a -------------------------------------------------------------------------------- /lib/libmmain.a.patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libmmain.a.patch.txt -------------------------------------------------------------------------------- /lib/libmphy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libmphy.a -------------------------------------------------------------------------------- /lib/libmwpa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libmwpa.a -------------------------------------------------------------------------------- /lib/libnet80211.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libnet80211.a -------------------------------------------------------------------------------- /lib/libpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libpp.a -------------------------------------------------------------------------------- /lib/libsdk.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/libsdk.a -------------------------------------------------------------------------------- /lib/mlibsdk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/mlibsdk.bat -------------------------------------------------------------------------------- /lib/new_libdhcps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/new_libdhcps.bat -------------------------------------------------------------------------------- /lib/new_liblwipif.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/new_liblwipif.bat -------------------------------------------------------------------------------- /lib/new_libmgcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/new_libmgcc.bat -------------------------------------------------------------------------------- /lib/new_libmlwip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/new_libmlwip.bat -------------------------------------------------------------------------------- /lib/new_libmmain.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/new_libmmain.bat -------------------------------------------------------------------------------- /lib/new_libmphy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/new_libmphy.bat -------------------------------------------------------------------------------- /lib/new_libmwpa.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/new_libmwpa.bat -------------------------------------------------------------------------------- /lib/o-asm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/o-asm.bat -------------------------------------------------------------------------------- /lib/rom_files_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/lib/rom_files_list.txt -------------------------------------------------------------------------------- /make_webfs_rs485.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/make_webfs_rs485.bat -------------------------------------------------------------------------------- /make_webfs_tcp2uart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/make_webfs_tcp2uart.bat -------------------------------------------------------------------------------- /mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/mem.txt -------------------------------------------------------------------------------- /mem_usage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/mem_usage.bat -------------------------------------------------------------------------------- /ovls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ovls.py -------------------------------------------------------------------------------- /ovls/ovls.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/ovls/ovls.7z -------------------------------------------------------------------------------- /read_firmware.bat: -------------------------------------------------------------------------------- 1 | esptool.py --port COM9 -b 460800 read_flash 0 524288 firmware.bin 2 | -------------------------------------------------------------------------------- /uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/uploader.py -------------------------------------------------------------------------------- /webbin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/Makefile -------------------------------------------------------------------------------- /webbin/PVFSlib.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/PVFSlib.7z -------------------------------------------------------------------------------- /webbin/WEBFS22.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/WEBFS22.zip -------------------------------------------------------------------------------- /webbin/compress_java.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/compress_java.bat -------------------------------------------------------------------------------- /webbin/example_WEBFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/example_WEBFiles.bin -------------------------------------------------------------------------------- /webbin/example_iot_cloud.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/example_iot_cloud.ini -------------------------------------------------------------------------------- /webbin/iot_cloud.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/iot_cloud.ini -------------------------------------------------------------------------------- /webbin/web_vars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/web_vars.txt -------------------------------------------------------------------------------- /webbin/yuicompressor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webbin/yuicompressor.jar -------------------------------------------------------------------------------- /webfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webfs/README.md -------------------------------------------------------------------------------- /webfs/webfs_upload1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webfs/webfs_upload1.py -------------------------------------------------------------------------------- /webfs/webfs_upload2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webfs/webfs_upload2.py -------------------------------------------------------------------------------- /webvars_rs485.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webvars_rs485.xlsx -------------------------------------------------------------------------------- /webvars_tcp2uart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vad7/PowerMeter/HEAD/webvars_tcp2uart.xlsx --------------------------------------------------------------------------------