homebridge-neptun-smart
v1.0.10
Published
Neptun Smart integration via ModBus RTU.
Downloads
5
Readme
Homebridge Nuptun Smart
This plugin provides an integration with Neptun Smart leak prevention system. No online API. Control your sensors and valves via local network using ModBus RTU.
Instructions
- Connect your Neptun Smart appliance to Wi-Fi network.
- Discover device IP address and make static DHCP lease settings.
- Install plugin and configure it using Homebridge Config UI X.
- Minimum required settings are:
id
,displayName
,host
,groupsEnabled
,wiredSensorsCount
.
Wireless sensors will be discovered automatically.
Example Config
If you are not using Homebridge Config UI X feel free to use this example config.
{
"platforms": [
{
"devices" : [
{
"id" : "neptun-1",
"displayName" : "Neptun Smart Bath",
"host" : "192.168.1.30",
"groupsEnabled" : false,
"wiredSensorsCount" : 3
},
{
"id" : "neptun-2",
"displayName" : "Neptun Smart Shower",
"host" : "192.168.1.31",
"port" : 503,
"address": 240,
"groupsEnabled" : false,
"wiredSensorsCount" : 4,
"updateInterval" : 10,
}
],
"platform" : "NeptunSmart"
}
]
}