├── .gitignore ├── .gitmodules ├── ESP-1wire-WLAN-Gateway.ino ├── Esp1wire.h ├── Esp1wire.ino ├── EspConfig.h ├── EspConfig.ino ├── EspDebug.h ├── EspDebug.ino ├── EspMe.h ├── EspMe.ino ├── EspMqtt.h ├── EspMqtt.ino ├── EspTools.ino ├── EspWifi.h ├── EspWifi.ino ├── FHEM ├── 36_KVPUDP.pm └── firmware │ ├── ESP-1wire-WLAN-Gateway v0.4 (08-04-2019) + M-E Support.bin │ ├── ESP-1wire-WLAN-Gateway v0.4 (08-04-2019).bin │ └── ESP-1wire-WLAN-Gateway v0.5 (01-11-2020).bin ├── HelperHTML.ino ├── doc ├── AlarmFilter.md ├── BatteryDevice.md ├── Bus.md ├── BusGPIO.md ├── BusIC.md ├── Busmaster.md ├── CounterDevice.md ├── Device.md ├── DeviceFilter.md ├── Esp1wire.md ├── HelperBatteryDevice.md ├── HelperCounterDevice.md ├── HelperDevice.md ├── HelperSwitchDevice.md ├── HelperTemperatureDevice.md ├── SwitchDevice.md ├── TemperatureDevice.md └── TemperatureDeviceFilter.md ├── libraries.7z ├── libraries └── readme.md └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/.gitmodules -------------------------------------------------------------------------------- /ESP-1wire-WLAN-Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/ESP-1wire-WLAN-Gateway.ino -------------------------------------------------------------------------------- /Esp1wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/Esp1wire.h -------------------------------------------------------------------------------- /Esp1wire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/Esp1wire.ino -------------------------------------------------------------------------------- /EspConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspConfig.h -------------------------------------------------------------------------------- /EspConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspConfig.ino -------------------------------------------------------------------------------- /EspDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspDebug.h -------------------------------------------------------------------------------- /EspDebug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspDebug.ino -------------------------------------------------------------------------------- /EspMe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspMe.h -------------------------------------------------------------------------------- /EspMe.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspMe.ino -------------------------------------------------------------------------------- /EspMqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspMqtt.h -------------------------------------------------------------------------------- /EspMqtt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspMqtt.ino -------------------------------------------------------------------------------- /EspTools.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspTools.ino -------------------------------------------------------------------------------- /EspWifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspWifi.h -------------------------------------------------------------------------------- /EspWifi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/EspWifi.ino -------------------------------------------------------------------------------- /FHEM/36_KVPUDP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/FHEM/36_KVPUDP.pm -------------------------------------------------------------------------------- /FHEM/firmware/ESP-1wire-WLAN-Gateway v0.4 (08-04-2019) + M-E Support.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/FHEM/firmware/ESP-1wire-WLAN-Gateway v0.4 (08-04-2019) + M-E Support.bin -------------------------------------------------------------------------------- /FHEM/firmware/ESP-1wire-WLAN-Gateway v0.4 (08-04-2019).bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/FHEM/firmware/ESP-1wire-WLAN-Gateway v0.4 (08-04-2019).bin -------------------------------------------------------------------------------- /FHEM/firmware/ESP-1wire-WLAN-Gateway v0.5 (01-11-2020).bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/FHEM/firmware/ESP-1wire-WLAN-Gateway v0.5 (01-11-2020).bin -------------------------------------------------------------------------------- /HelperHTML.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/HelperHTML.ino -------------------------------------------------------------------------------- /doc/AlarmFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/AlarmFilter.md -------------------------------------------------------------------------------- /doc/BatteryDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/BatteryDevice.md -------------------------------------------------------------------------------- /doc/Bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/Bus.md -------------------------------------------------------------------------------- /doc/BusGPIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/BusGPIO.md -------------------------------------------------------------------------------- /doc/BusIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/BusIC.md -------------------------------------------------------------------------------- /doc/Busmaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/Busmaster.md -------------------------------------------------------------------------------- /doc/CounterDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/CounterDevice.md -------------------------------------------------------------------------------- /doc/Device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/Device.md -------------------------------------------------------------------------------- /doc/DeviceFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/DeviceFilter.md -------------------------------------------------------------------------------- /doc/Esp1wire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/Esp1wire.md -------------------------------------------------------------------------------- /doc/HelperBatteryDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/HelperBatteryDevice.md -------------------------------------------------------------------------------- /doc/HelperCounterDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/HelperCounterDevice.md -------------------------------------------------------------------------------- /doc/HelperDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/HelperDevice.md -------------------------------------------------------------------------------- /doc/HelperSwitchDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/HelperSwitchDevice.md -------------------------------------------------------------------------------- /doc/HelperTemperatureDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/HelperTemperatureDevice.md -------------------------------------------------------------------------------- /doc/SwitchDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/SwitchDevice.md -------------------------------------------------------------------------------- /doc/TemperatureDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/TemperatureDevice.md -------------------------------------------------------------------------------- /doc/TemperatureDeviceFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/doc/TemperatureDeviceFilter.md -------------------------------------------------------------------------------- /libraries.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/libraries.7z -------------------------------------------------------------------------------- /libraries/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/libraries/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habeIchVergessen/ESP-1wire-WLAN-Gateway/HEAD/readme.md --------------------------------------------------------------------------------