├── README.md ├── espnow ├── solax_chint_1p │ ├── meter_client │ │ ├── boot.py │ │ ├── main.py │ │ ├── scrivo │ │ │ ├── logging.py │ │ │ └── tools │ │ │ │ └── tool.py │ │ └── scrivo_meter_client │ │ │ ├── _runner.py │ │ │ └── crc.py │ └── meter_server │ │ ├── boot.py │ │ ├── main.py │ │ ├── scrivo │ │ ├── logging.py │ │ └── tools │ │ │ └── tool.py │ │ └── scrivo_meter_server │ │ ├── _runner.py │ │ └── crc.py ├── solax_chint_3p │ ├── meter_client │ │ ├── boot.py │ │ ├── main.py │ │ ├── scrivo │ │ │ ├── logging.py │ │ │ └── tools │ │ │ │ └── tool.py │ │ └── scrivo_meter_client │ │ │ ├── _runner.py │ │ │ └── crc.py │ └── meter_server │ │ ├── boot.py │ │ ├── main.py │ │ ├── scrivo │ │ ├── logging.py │ │ └── tools │ │ │ └── tool.py │ │ └── scrivo_meter_server │ │ ├── _runner.py │ │ └── crc.py └── solax_eastron230mbus │ ├── meter_client │ ├── boot.py │ ├── main.py │ ├── scrivo │ │ ├── logging.py │ │ └── tools │ │ │ └── tool.py │ └── scrivo_meter_client │ │ ├── _runner.py │ │ └── crc.py │ └── meter_server │ ├── boot.py │ ├── main.py │ ├── scrivo │ ├── logging.py │ └── tools │ │ └── tool.py │ └── scrivo_meter_server │ ├── _runner.py │ └── crc.py └── solo └── gateway_stm32 ├── boot.py ├── main.py ├── scrivo ├── logging.py └── tools │ └── tool.py └── scrivo_meter ├── _runner.py ├── config.py └── crc.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/README.md -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_client/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_client/boot.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_client/main.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_client/scrivo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_client/scrivo/logging.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_client/scrivo/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_client/scrivo/tools/tool.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_client/scrivo_meter_client/_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_client/scrivo_meter_client/_runner.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_client/scrivo_meter_client/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_client/scrivo_meter_client/crc.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_server/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_server/boot.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_server/main.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_server/scrivo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_server/scrivo/logging.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_server/scrivo/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_server/scrivo/tools/tool.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_server/scrivo_meter_server/_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_server/scrivo_meter_server/_runner.py -------------------------------------------------------------------------------- /espnow/solax_chint_1p/meter_server/scrivo_meter_server/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_1p/meter_server/scrivo_meter_server/crc.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_client/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_client/boot.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_client/main.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_client/scrivo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_client/scrivo/logging.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_client/scrivo/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_client/scrivo/tools/tool.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_client/scrivo_meter_client/_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_client/scrivo_meter_client/_runner.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_client/scrivo_meter_client/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_client/scrivo_meter_client/crc.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_server/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_server/boot.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_server/main.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_server/scrivo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_server/scrivo/logging.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_server/scrivo/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_server/scrivo/tools/tool.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_server/scrivo_meter_server/_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_server/scrivo_meter_server/_runner.py -------------------------------------------------------------------------------- /espnow/solax_chint_3p/meter_server/scrivo_meter_server/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_chint_3p/meter_server/scrivo_meter_server/crc.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_client/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_client/boot.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_client/main.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_client/scrivo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_client/scrivo/logging.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_client/scrivo/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_client/scrivo/tools/tool.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_client/scrivo_meter_client/_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_client/scrivo_meter_client/_runner.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_client/scrivo_meter_client/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_client/scrivo_meter_client/crc.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_server/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_server/boot.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_server/main.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_server/scrivo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_server/scrivo/logging.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_server/scrivo/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_server/scrivo/tools/tool.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_server/scrivo_meter_server/_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_server/scrivo_meter_server/_runner.py -------------------------------------------------------------------------------- /espnow/solax_eastron230mbus/meter_server/scrivo_meter_server/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/espnow/solax_eastron230mbus/meter_server/scrivo_meter_server/crc.py -------------------------------------------------------------------------------- /solo/gateway_stm32/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/solo/gateway_stm32/boot.py -------------------------------------------------------------------------------- /solo/gateway_stm32/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/solo/gateway_stm32/main.py -------------------------------------------------------------------------------- /solo/gateway_stm32/scrivo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/solo/gateway_stm32/scrivo/logging.py -------------------------------------------------------------------------------- /solo/gateway_stm32/scrivo/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/solo/gateway_stm32/scrivo/tools/tool.py -------------------------------------------------------------------------------- /solo/gateway_stm32/scrivo_meter/_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/solo/gateway_stm32/scrivo_meter/_runner.py -------------------------------------------------------------------------------- /solo/gateway_stm32/scrivo_meter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/solo/gateway_stm32/scrivo_meter/config.py -------------------------------------------------------------------------------- /solo/gateway_stm32/scrivo_meter/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straga/Smart-Meter-Gateway/HEAD/solo/gateway_stm32/scrivo_meter/crc.py --------------------------------------------------------------------------------