more G-Labs products

Author Topic: Unhandled Message: Aeon Micro Smart Dimmer (2nd ed)  (Read 1183 times)

March 09, 2014, 01:22:48 AM
Read 1183 times

miket

  • **
  • Information
  • Jr. Member
  • Posts: 40
Hey Gene!

I'm getting this:

ZWaveLib UNHANDLED message: 01 08 00 04 00 0D 02 82 01 7F

When I toggle the switch (after updating parameter 80 to 1).  The zwave reference says that this (82) is a "Hail" command.   It's of course coming from the node that I was switching.   

I have the Aeon Micro associated with node 1 (so that the controller should receive the message)

Am I doing something wrong?  I know this is one of your devices.   

(By the way-  I'm really loving the entire architecture of the whole project.  I'm more of a java programmer, but the plugins make a lot of sense.  I love that it is so easy to customize this thing!)


March 09, 2014, 06:23:49 AM
Reply #1

miket

  • **
  • Information
  • Jr. Member
  • Posts: 40
ok...this seemed to work.

Added a handler to ZWaveLib:

case (byte)CommandClass.COMMAND_CLASS_HAIL:

               this.Basic_Get ();
break;



This obviously just calls for a status update when the hail command is issued (COMMAND_CLASS_HAIL is defined as 0x82 in the constants).  There's probably an easier way to do it, so I'd be interested to hear what it is!  But this did allow the switch to trigger other events quite well.