https://raw.githubusercontent.com/borristhecat/HUBITAT/master/Clean%20Device.groovy
This should work as well.
https://raw.githubusercontent.com/borristhecat/HUBITAT/master/Clean%20Device.groovy
This should work as well.
Thanks for the tip..
Seems to be working, but now i get these in the logs..?
dev:1302020-10-29 23:06:39.123 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 5100
dev:1302020-10-29 23:06:35.102 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 4F00
dev:1302020-10-29 23:06:31.003 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 4D00
dev:1302020-10-29 23:06:26.958 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 4B00
dev:1302020-10-29 23:06:07.684 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 4500
dev:1302020-10-29 23:06:03.602 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 4300
dev:1302020-10-29 23:05:59.569 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 4100
dev:1302020-10-29 23:05:55.525 warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 4ABA 00 00 0000 00 00 3E00
Not sure, maybe check if Enable Debug Logging is off on the driver page Preferences?
Thanks for helping out @Ranchitat..!
Hmm.. Both Trace and Debug logging is off..
I just installed this outlet 1113-S and after reading this is the low cost version I was looking for confirmation that it's also a repeater. At least I got it at a clearance price last year.
I just got a new Centralite 3-series outlet installed, and I'm seeing something similar. It's model # 4257050-RZHAC, and is explicitly included in the driver. I ran the Clean Device code that @lewis.heidrick suggested, but still see the "did not pase message" warnings in the log. Here's an example:
dev:5462020-11-12 11:48:23.303 am warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 5C6B 00 00 0000 00 00 3400
dev:5462020-11-12 11:48:19.254 am warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 5C6B 00 00 0000 00 00 3200
dev:5462020-11-12 11:48:15.244 am warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 5C6B 00 00 0000 00 00 3000
dev:5462020-11-12 11:48:11.249 am warnDID NOT PARSE MESSAGE for description : catchall: 0000 8021 00 00 0040 00 5C6B 00 00 0000 00 00 2E00
The last 4 digits change for each instance of the message... I don't see a pattern there. I don't know anything about packet formatting, so I have no idea what I'm looking at.
Edit: I only see these warnings appear when I click "save preferences"
@srwhite
I was playing with trying to add the commands to control the Z-Wave repeater from the Arcus Project driver into yours, but I don't think I understand how Hubitat drivers work well enough to do so.
I added the following two sections of code to your driver:
command "zwaveLearn"
command "zwaveNodeInfo"
command "zwaveReset"
and
/*
zwaveLearn
Sends ZWave Command Frame - Learn
*/
def zwaveLearn()
{
logWarn "Sends ZWave Command Frame - Learn 0x00"
zigbee.command(0xFC03, 0x00)
}
/*
zwaveNodeInfo
Sends ZWave Command Frame - Send Node Info
*/
def zwaveNodeInfo()
{
logWarn "Sends ZWave Command Frame - Send Node Info 0x01"
zigbee.command(0xFC03, 0x01)
}
/*
zwaveReset
Sends ZWave Command Frame - Reset
*/
def zwaveReset()
{
logWarn "Sends ZWave Command Frame - Reset 0x05"
zigbee.command(0xFC03, 0x05)
}
When I try to actually send the commands from the buttons on the device page, however, I ge tthe following errors:
What am I missing here?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.