FYI, for those interested in adding MiniMote to work with Scenes in Vera, I contacted Aeon Labs and CC'd MCV management
here is what I got from Aeon Labs Management below, and they CC'd MCV management on the reply. I don't think this will help us end users, ,but lets hope MCV adds in full support for MiniMote due to this.
FROM AEON LABS:
==============
Our Minimote has the ability to send any and all command classes available in Z-Wave or execute any scene using the "Association Command Configuration Command Class". Please find the attached engineering specification to do this as well as an in depth example below.
The following commands should work with your Minimote in order to have it send Basic Set 1 when button 1 is pressed, Basic Set 2 when button 2 is pressed and so on to your gateway. These can be sent to any node ID from the minimote.
FORMAT OF DATA:
1) Setting Button #1 to send Basic Set 1
ZW_SendData(Configuration CC, Configuration Set, 241, 1, 1); - Changes the function on Button #1 to being Z-Wave programmable.
ZW_SendData(Association Command Configuration CC, Command Config Set, 0, nodeID to receive transmission, 3, Basic CC, Basic Set, 1); - A tap on Button #1 will send Basic Set 1 to the NodeID.
EXAMPLES:
1) Setting Button #1 to send Basic Set 11 to NodeID 77.
ZW_SendData(0x70, 0x04, 241, 1, 1);
ZW_SendData(0x9B, 0x03, 0, 77, 3, 0x20, 0x01, 11);
2) Setting Button #2 to send Basic Set 22 to NodeID 77.
ZW_SendData(0x70, 0x04, 242, 1, 1);
ZW_SendData(0x9B, 0x03, 40, 77, 3, 0x20, 0x01, 22);
3) Setting Button #3 to send Basic Set 33 to NodeID 77.
ZW_SendData(0x70, 0x04, 243, 1, 1);
ZW_SendData(0x9B, 0x03, 80, 77, 3, 0x20, 0x01, 33);
4) Setting Button #4 to send Basic Set 44 to NodeID 77.
ZW_SendData(0x70, 0x04, 244, 1, 1);
ZW_SendData(0x9B, 0x03, 120, 77, 3, 0x20, 0x01, 44);
5) Setting Button #5 to send Basic Set 55 to NodeID 77.
ZW_SendData(0x70, 0x04, 245, 1, 1);
ZW_SendData(0x9B, 0x03, 160, 77, 3, 0x20, 0x01, 55);
6) Setting Button #6 to send Basic Set 66 to NodeID 77.
ZW_SendData(0x70, 0x04, 246, 1, 1);
ZW_SendData(0x9B, 0x03, 240, 77, 3, 0x20, 0x01, 66);