Hi there,
I have eclipse running with java/groovy but have an import issue in a aquara blind driver I am investigating:
"import hubitat.helper.HexUtils"
there are references to 'hubitat' like:
void sendZigbeeCommands(ArrayList cmd) {
logging("sendZigbeeCommands(cmd=$cmd)", 1)
hubitat.device.HubMultiAction allActions = new hubitat.device.HubMultiAction()
cmd.each {
allActions.add(new hubitat.device.HubAction(it, hubitat.device.Protocol.ZIGBEE))
}
sendHubCommand(allActions)
}
is hubitat an API I need to add into eclipse, is it available, if so where from.
OR
do I have to use hubitat UI to modify, test changes?
The reason I started investigating was that
With the Aqara blind motor E1 connected directly with Hubitat, I have it basically working but am getting unhandled events every 15 seconds filling the log and would like to try and fix. I believe it is a Scene Cluster 0x0005 but could be wrong.
Unhandled Event - description:catchall: 0000 0005 00 00 0040 00 8B15 00 00 0000 00 00 C40000 | msgMap:[raw:catchall: 0000 0005 00 00 0040 00 8B15 00 00 0000 00 00 C40000, profileId:0000, clusterId:0005, clusterInt:5, sourceEndpoint:00, destinationEndpoint:00, options:0040, messageType:00, dni:8B15, isClusterSpecific:false, isManufacturerSpecific:false, manufacturerId:0000, command:00, direction:00, data:[C4, 00, 00]]
I am using a Zigbee sniffer - ZBoss with wireshark to view data from/to the device
from device:

Im assuming that there is no code in the driver to handle a scene request from the device?