ansible4ozw 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. data/lib/ansible.rb +12 -9
  2. data/lib/ansible/ansible_device.rb +1 -1
  3. data/lib/ansible/ansible_value.rb +1 -1
  4. data/lib/ansible/config.rb +8 -5
  5. data/lib/ansible/devices.rb +1 -0
  6. data/lib/ansible/knx.rb +0 -0
  7. data/lib/ansible/knx/dpt/tests/test_dpt10.rb~ +45 -0
  8. data/lib/ansible/knx/dpt/tests/test_dpt9.rb~ +55 -0
  9. data/lib/ansible/transceiver.rb +0 -3
  10. data/lib/ansible/version.rb +3 -0
  11. data/lib/ansible/zwave.rb +1 -0
  12. data/lib/ansible/{openzwave → zwave/openzwave}/ozw_constants.rb +1 -2
  13. data/lib/ansible/{openzwave → zwave/openzwave}/ozw_headers.rb +2 -6
  14. data/lib/ansible/{openzwave → zwave/openzwave}/ozw_remote_manager.rb +0 -3
  15. data/lib/ansible/{openzwave → zwave/openzwave}/ozw_types.rb +0 -0
  16. data/lib/ansible/zwave/openzwave/src/Driver.h +695 -0
  17. data/lib/ansible/zwave/openzwave/src/Notification.h +165 -0
  18. data/lib/ansible/zwave/openzwave/src/command_classes/Alarm.cpp +142 -0
  19. data/lib/ansible/zwave/openzwave/src/command_classes/Alarm.h +69 -0
  20. data/lib/ansible/zwave/openzwave/src/command_classes/ApplicationStatus.cpp +93 -0
  21. data/lib/ansible/zwave/openzwave/src/command_classes/ApplicationStatus.h +57 -0
  22. data/lib/ansible/zwave/openzwave/src/command_classes/Association.cpp +385 -0
  23. data/lib/ansible/zwave/openzwave/src/command_classes/Association.h +73 -0
  24. data/lib/ansible/zwave/openzwave/src/command_classes/AssociationCommandConfiguration.cpp +277 -0
  25. data/lib/ansible/zwave/openzwave/src/command_classes/AssociationCommandConfiguration.h +70 -0
  26. data/lib/ansible/zwave/openzwave/src/command_classes/Basic.cpp +212 -0
  27. data/lib/ansible/zwave/openzwave/src/command_classes/Basic.h +72 -0
  28. data/lib/ansible/zwave/openzwave/src/command_classes/BasicWindowCovering.cpp +118 -0
  29. data/lib/ansible/zwave/openzwave/src/command_classes/BasicWindowCovering.h +64 -0
  30. data/lib/ansible/zwave/openzwave/src/command_classes/Battery.cpp +141 -0
  31. data/lib/ansible/zwave/openzwave/src/command_classes/Battery.h +65 -0
  32. data/lib/ansible/zwave/openzwave/src/command_classes/ClimateControlSchedule.cpp +415 -0
  33. data/lib/ansible/zwave/openzwave/src/command_classes/ClimateControlSchedule.h +71 -0
  34. data/lib/ansible/zwave/openzwave/src/command_classes/Clock.cpp +227 -0
  35. data/lib/ansible/zwave/openzwave/src/command_classes/Clock.h +67 -0
  36. data/lib/ansible/zwave/openzwave/src/command_classes/CommandClass.cpp +546 -0
  37. data/lib/ansible/zwave/openzwave/src/command_classes/CommandClass.h +145 -0
  38. data/lib/ansible/zwave/openzwave/src/command_classes/CommandClasses.cpp +291 -0
  39. data/lib/ansible/zwave/openzwave/src/command_classes/CommandClasses.h +79 -0
  40. data/lib/ansible/zwave/openzwave/src/command_classes/Configuration.cpp +258 -0
  41. data/lib/ansible/zwave/openzwave/src/command_classes/Configuration.h +67 -0
  42. data/lib/ansible/zwave/openzwave/src/command_classes/ControllerReplication.cpp +142 -0
  43. data/lib/ansible/zwave/openzwave/src/command_classes/ControllerReplication.h +63 -0
  44. data/lib/ansible/zwave/openzwave/src/command_classes/EnergyProduction.cpp +163 -0
  45. data/lib/ansible/zwave/openzwave/src/command_classes/EnergyProduction.h +65 -0
  46. data/lib/ansible/zwave/openzwave/src/command_classes/Hail.cpp +68 -0
  47. data/lib/ansible/zwave/openzwave/src/command_classes/Hail.h +58 -0
  48. data/lib/ansible/zwave/openzwave/src/command_classes/Indicator.cpp +159 -0
  49. data/lib/ansible/zwave/openzwave/src/command_classes/Indicator.h +66 -0
  50. data/lib/ansible/zwave/openzwave/src/command_classes/Language.cpp +159 -0
  51. data/lib/ansible/zwave/openzwave/src/command_classes/Language.h +65 -0
  52. data/lib/ansible/zwave/openzwave/src/command_classes/Lock.cpp +159 -0
  53. data/lib/ansible/zwave/openzwave/src/command_classes/Lock.h +66 -0
  54. data/lib/ansible/zwave/openzwave/src/command_classes/ManufacturerSpecific.cpp +439 -0
  55. data/lib/ansible/zwave/openzwave/src/command_classes/ManufacturerSpecific.h +116 -0
  56. data/lib/ansible/zwave/openzwave/src/command_classes/Meter.cpp +541 -0
  57. data/lib/ansible/zwave/openzwave/src/command_classes/Meter.h +73 -0
  58. data/lib/ansible/zwave/openzwave/src/command_classes/MeterPulse.cpp +137 -0
  59. data/lib/ansible/zwave/openzwave/src/command_classes/MeterPulse.h +65 -0
  60. data/lib/ansible/zwave/openzwave/src/command_classes/MultiCmd.cpp +77 -0
  61. data/lib/ansible/zwave/openzwave/src/command_classes/MultiCmd.h +63 -0
  62. data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstance.cpp +568 -0
  63. data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstance.h +96 -0
  64. data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstanceAssociation.cpp +61 -0
  65. data/lib/ansible/zwave/openzwave/src/command_classes/MultiInstanceAssociation.h +59 -0
  66. data/lib/ansible/zwave/openzwave/src/command_classes/NodeNaming.cpp +525 -0
  67. data/lib/ansible/zwave/openzwave/src/command_classes/NodeNaming.h +66 -0
  68. data/lib/ansible/zwave/openzwave/src/command_classes/Powerlevel.cpp +157 -0
  69. data/lib/ansible/zwave/openzwave/src/command_classes/Powerlevel.h +82 -0
  70. data/lib/ansible/zwave/openzwave/src/command_classes/Proprietary.cpp +62 -0
  71. data/lib/ansible/zwave/openzwave/src/command_classes/Proprietary.h +58 -0
  72. data/lib/ansible/zwave/openzwave/src/command_classes/Protection.cpp +177 -0
  73. data/lib/ansible/zwave/openzwave/src/command_classes/Protection.h +73 -0
  74. data/lib/ansible/zwave/openzwave/src/command_classes/SensorAlarm.cpp +208 -0
  75. data/lib/ansible/zwave/openzwave/src/command_classes/SensorAlarm.h +77 -0
  76. data/lib/ansible/zwave/openzwave/src/command_classes/SensorBinary.cpp +134 -0
  77. data/lib/ansible/zwave/openzwave/src/command_classes/SensorBinary.h +65 -0
  78. data/lib/ansible/zwave/openzwave/src/command_classes/SensorMultilevel.cpp +237 -0
  79. data/lib/ansible/zwave/openzwave/src/command_classes/SensorMultilevel.h +71 -0
  80. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchAll.cpp +219 -0
  81. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchAll.h +69 -0
  82. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchBinary.cpp +157 -0
  83. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchBinary.h +66 -0
  84. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchMultilevel.cpp +559 -0
  85. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchMultilevel.h +83 -0
  86. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleBinary.cpp +151 -0
  87. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleBinary.h +66 -0
  88. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleMultilevel.cpp +195 -0
  89. data/lib/ansible/zwave/openzwave/src/command_classes/SwitchToggleMultilevel.h +75 -0
  90. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanMode.cpp +332 -0
  91. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanMode.h +77 -0
  92. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanState.cpp +149 -0
  93. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatFanState.h +71 -0
  94. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatMode.cpp +373 -0
  95. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatMode.h +76 -0
  96. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatOperatingState.cpp +147 -0
  97. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatOperatingState.h +71 -0
  98. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatSetpoint.cpp +317 -0
  99. data/lib/ansible/zwave/openzwave/src/command_classes/ThermostatSetpoint.h +73 -0
  100. data/lib/ansible/zwave/openzwave/src/command_classes/Version.cpp +255 -0
  101. data/lib/ansible/zwave/openzwave/src/command_classes/Version.h +71 -0
  102. data/lib/ansible/zwave/openzwave/src/command_classes/WakeUp.cpp +391 -0
  103. data/lib/ansible/zwave/openzwave/src/command_classes/WakeUp.h +85 -0
  104. data/lib/ansible/zwave/openzwave/src/platform/Controller.cpp +68 -0
  105. data/lib/ansible/zwave/openzwave/src/platform/Controller.h +106 -0
  106. data/lib/ansible/zwave/openzwave/src/platform/Event.cpp +102 -0
  107. data/lib/ansible/zwave/openzwave/src/platform/Event.h +91 -0
  108. data/lib/ansible/zwave/openzwave/src/platform/HidController.cpp +539 -0
  109. data/lib/ansible/zwave/openzwave/src/platform/HidController.h +147 -0
  110. data/lib/ansible/zwave/openzwave/src/platform/Log.cpp +310 -0
  111. data/lib/ansible/zwave/openzwave/src/platform/Log.h +184 -0
  112. data/lib/ansible/zwave/openzwave/src/platform/Mutex.cpp +96 -0
  113. data/lib/ansible/zwave/openzwave/src/platform/Mutex.h +88 -0
  114. data/lib/ansible/zwave/openzwave/src/platform/Ref.h +91 -0
  115. data/lib/ansible/zwave/openzwave/src/platform/SerialController.cpp +180 -0
  116. data/lib/ansible/zwave/openzwave/src/platform/SerialController.h +138 -0
  117. data/lib/ansible/zwave/openzwave/src/platform/Stream.cpp +229 -0
  118. data/lib/ansible/zwave/openzwave/src/platform/Stream.h +135 -0
  119. data/lib/ansible/zwave/openzwave/src/platform/Thread.cpp +118 -0
  120. data/lib/ansible/zwave/openzwave/src/platform/Thread.h +101 -0
  121. data/lib/ansible/zwave/openzwave/src/platform/TimeStamp.cpp +92 -0
  122. data/lib/ansible/zwave/openzwave/src/platform/TimeStamp.h +85 -0
  123. data/lib/ansible/zwave/openzwave/src/platform/Wait.cpp +176 -0
  124. data/lib/ansible/zwave/openzwave/src/platform/Wait.h +113 -0
  125. data/lib/ansible/zwave/openzwave/src/platform/unix/EventImpl.cpp +262 -0
  126. data/lib/ansible/zwave/openzwave/src/platform/unix/EventImpl.h +62 -0
  127. data/lib/ansible/zwave/openzwave/src/platform/unix/LogImpl.cpp +304 -0
  128. data/lib/ansible/zwave/openzwave/src/platform/unix/LogImpl.h +70 -0
  129. data/lib/ansible/zwave/openzwave/src/platform/unix/MutexImpl.cpp +136 -0
  130. data/lib/ansible/zwave/openzwave/src/platform/unix/MutexImpl.h +56 -0
  131. data/lib/ansible/zwave/openzwave/src/platform/unix/SerialControllerImpl.cpp +368 -0
  132. data/lib/ansible/zwave/openzwave/src/platform/unix/SerialControllerImpl.h +74 -0
  133. data/lib/ansible/zwave/openzwave/src/platform/unix/ThreadImpl.cpp +181 -0
  134. data/lib/ansible/zwave/openzwave/src/platform/unix/ThreadImpl.h +67 -0
  135. data/lib/ansible/zwave/openzwave/src/platform/unix/TimeStampImpl.cpp +121 -0
  136. data/lib/ansible/zwave/openzwave/src/platform/unix/TimeStampImpl.h +84 -0
  137. data/lib/ansible/zwave/openzwave/src/platform/unix/WaitImpl.cpp +160 -0
  138. data/lib/ansible/zwave/openzwave/src/platform/unix/WaitImpl.h +74 -0
  139. data/lib/ansible/zwave/openzwave/src/platform/windows/EventImpl.cpp +102 -0
  140. data/lib/ansible/zwave/openzwave/src/platform/windows/EventImpl.h +60 -0
  141. data/lib/ansible/zwave/openzwave/src/platform/windows/LogImpl.cpp +302 -0
  142. data/lib/ansible/zwave/openzwave/src/platform/windows/LogImpl.h +71 -0
  143. data/lib/ansible/zwave/openzwave/src/platform/windows/MutexImpl.cpp +114 -0
  144. data/lib/ansible/zwave/openzwave/src/platform/windows/MutexImpl.h +58 -0
  145. data/lib/ansible/zwave/openzwave/src/platform/windows/SerialControllerImpl.cpp +410 -0
  146. data/lib/ansible/zwave/openzwave/src/platform/windows/SerialControllerImpl.h +66 -0
  147. data/lib/ansible/zwave/openzwave/src/platform/windows/ThreadImpl.cpp +158 -0
  148. data/lib/ansible/zwave/openzwave/src/platform/windows/ThreadImpl.h +71 -0
  149. data/lib/ansible/zwave/openzwave/src/platform/windows/TimeStampImpl.cpp +95 -0
  150. data/lib/ansible/zwave/openzwave/src/platform/windows/TimeStampImpl.h +83 -0
  151. data/lib/ansible/zwave/openzwave/src/platform/windows/WaitImpl.cpp +134 -0
  152. data/lib/ansible/zwave/openzwave/src/platform/windows/WaitImpl.h +73 -0
  153. data/lib/ansible/zwave/openzwave/src/value_classes/ValueID.h +283 -0
  154. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_bool.rb +0 -0
  155. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_button.rb +0 -0
  156. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_byte.rb +0 -0
  157. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_decimal.rb +0 -0
  158. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_int.rb +0 -0
  159. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_list.rb +0 -0
  160. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_short.rb +0 -0
  161. data/lib/ansible/zwave/{types → openzwave/types}/valuetype_string.rb +0 -0
  162. data/lib/ansible/zwave/zwave_transceiver.rb +2 -8
  163. data/lib/ansible/zwave/zwave_value.rb +6 -10
  164. metadata +159 -17
  165. data/lib/ansible/zwave/zwave_node.rb +0 -5
@@ -0,0 +1,149 @@
1
+ //-----------------------------------------------------------------------------
2
+ //
3
+ // ThermostatFanState.cpp
4
+ //
5
+ // Implementation of the Z-Wave COMMAND_CLASS_THERMOSTAT_FAN_STATE
6
+ //
7
+ // Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
8
+ //
9
+ // SOFTWARE NOTICE AND LICENSE
10
+ //
11
+ // This file is part of OpenZWave.
12
+ //
13
+ // OpenZWave is free software: you can redistribute it and/or modify
14
+ // it under the terms of the GNU Lesser General Public License as published
15
+ // by the Free Software Foundation, either version 3 of the License,
16
+ // or (at your option) any later version.
17
+ //
18
+ // OpenZWave is distributed in the hope that it will be useful,
19
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
20
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21
+ // GNU Lesser General Public License for more details.
22
+ //
23
+ // You should have received a copy of the GNU Lesser General Public License
24
+ // along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
25
+ //
26
+ //-----------------------------------------------------------------------------
27
+
28
+ #include "CommandClasses.h"
29
+ #include "ThermostatFanState.h"
30
+ #include "Defs.h"
31
+ #include "Msg.h"
32
+ #include "Node.h"
33
+ #include "Driver.h"
34
+ #include "Log.h"
35
+
36
+ #include "ValueString.h"
37
+
38
+ using namespace OpenZWave;
39
+
40
+ enum ThermostatFanStateCmd
41
+ {
42
+ ThermostatFanStateCmd_Get = 0x02,
43
+ ThermostatFanStateCmd_Report = 0x03
44
+ };
45
+
46
+ static char const* c_stateName[] =
47
+ {
48
+ "Idle",
49
+ "Running",
50
+ "Running High",
51
+ "State 03", // Undefined states. May be used in the future.
52
+ "State 04",
53
+ "State 05",
54
+ "State 06",
55
+ "State 07",
56
+ "State 08",
57
+ "State 09",
58
+ "State 10",
59
+ "State 11",
60
+ "State 12",
61
+ "State 13",
62
+ "State 14",
63
+ "State 15"
64
+ };
65
+
66
+ //-----------------------------------------------------------------------------
67
+ // <ThermostatFanState::RequestState>
68
+ // Get the static thermostat mode details from the device
69
+ //-----------------------------------------------------------------------------
70
+ bool ThermostatFanState::RequestState
71
+ (
72
+ uint32 const _requestFlags,
73
+ uint8 const _instance,
74
+ Driver::MsgQueue const _queue
75
+ )
76
+ {
77
+ if( _requestFlags & RequestFlag_Dynamic )
78
+ {
79
+ // Request the current state
80
+ return RequestValue( _requestFlags, 0, _instance, _queue );
81
+ }
82
+ return false;
83
+ }
84
+
85
+ //-----------------------------------------------------------------------------
86
+ // <ThermostatFanState::RequestValue>
87
+ // Get the thermostat fan state details from the device
88
+ //-----------------------------------------------------------------------------
89
+ bool ThermostatFanState::RequestValue
90
+ (
91
+ uint32 const _requestFlags,
92
+ uint8 const _dummy1, // = 0 (not used)
93
+ uint8 const _instance,
94
+ Driver::MsgQueue const _queue
95
+ )
96
+ {
97
+ // Request the current state
98
+ Msg* msg = new Msg( "Request Current Thermostat Fan State", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true, true, FUNC_ID_APPLICATION_COMMAND_HANDLER, GetCommandClassId() );
99
+ msg->SetInstance( this, _instance );
100
+ msg->Append( GetNodeId() );
101
+ msg->Append( 2 );
102
+ msg->Append( GetCommandClassId() );
103
+ msg->Append( ThermostatFanStateCmd_Get );
104
+ msg->Append( TRANSMIT_OPTION_ACK | TRANSMIT_OPTION_AUTO_ROUTE );
105
+ GetDriver()->SendMsg( msg, _queue );
106
+ return true;
107
+ }
108
+
109
+ //-----------------------------------------------------------------------------
110
+ // <ThermostatFanState::HandleMsg>
111
+ // Handle a message from the Z-Wave network
112
+ //-----------------------------------------------------------------------------
113
+ bool ThermostatFanState::HandleMsg
114
+ (
115
+ uint8 const* _data,
116
+ uint32 const _length,
117
+ uint32 const _instance // = 1
118
+ )
119
+ {
120
+ if( ThermostatFanStateCmd_Report == (ThermostatFanStateCmd)_data[0] )
121
+ {
122
+ // We have received the thermostat fan state from the Z-Wave device
123
+ if( ValueString* valueString = static_cast<ValueString*>( GetValue( _instance, 0 ) ) )
124
+ {
125
+ valueString->OnValueRefreshed( c_stateName[_data[1]&0x0f] );
126
+ valueString->Release();
127
+ Log::Write( LogLevel_Info, GetNodeId(), "Received thermostat fan state: %s", valueString->GetValue().c_str() );
128
+ }
129
+ return true;
130
+ }
131
+
132
+ return false;
133
+ }
134
+
135
+ //-----------------------------------------------------------------------------
136
+ // <ThermostatFanState::CreateVars>
137
+ // Create the values managed by this command class
138
+ //-----------------------------------------------------------------------------
139
+ void ThermostatFanState::CreateVars
140
+ (
141
+ uint8 const _instance
142
+ )
143
+ {
144
+ if( Node* node = GetNodeUnsafe() )
145
+ {
146
+ node->CreateValueString( ValueID::ValueGenre_User, GetCommandClassId(), _instance, 0, "Fan State", "", true, false, c_stateName[0], 0 );
147
+ }
148
+ }
149
+
@@ -0,0 +1,71 @@
1
+ //-----------------------------------------------------------------------------
2
+ //
3
+ // ThermostatFanState.h
4
+ //
5
+ // Implementation of the Z-Wave COMMAND_CLASS_THERMOSTAT_FAN_STATE
6
+ //
7
+ // Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
8
+ //
9
+ // SOFTWARE NOTICE AND LICENSE
10
+ //
11
+ // This file is part of OpenZWave.
12
+ //
13
+ // OpenZWave is free software: you can redistribute it and/or modify
14
+ // it under the terms of the GNU Lesser General Public License as published
15
+ // by the Free Software Foundation, either version 3 of the License,
16
+ // or (at your option) any later version.
17
+ //
18
+ // OpenZWave is distributed in the hope that it will be useful,
19
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
20
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21
+ // GNU Lesser General Public License for more details.
22
+ //
23
+ // You should have received a copy of the GNU Lesser General Public License
24
+ // along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
25
+ //
26
+ //-----------------------------------------------------------------------------
27
+
28
+ #ifndef _ThermostatFanState_H
29
+ #define _ThermostatFanState_H
30
+
31
+ #include <vector>
32
+ #include <string>
33
+ #include "CommandClass.h"
34
+ #include "ValueList.h"
35
+
36
+ namespace OpenZWave
37
+ {
38
+ class ValueString;
39
+
40
+ /** \brief Implements COMMAND_CLASS_THERMOSTAT_FAN_STATE (0x45), a Z-Wave device command class.
41
+ */
42
+ class ThermostatFanState: public CommandClass
43
+ {
44
+ public:
45
+ static CommandClass* Create( uint32 const _homeId, uint8 const _nodeId ){ return new ThermostatFanState( _homeId, _nodeId ); }
46
+ virtual ~ThermostatFanState(){}
47
+
48
+ static uint8 const StaticGetCommandClassId(){ return 0x45; }
49
+ static string const StaticGetCommandClassName(){ return "COMMAND_CLASS_THERMOSTAT_FAN_STATE"; }
50
+
51
+ // From CommandClass
52
+ virtual bool RequestState( uint32 const _requestFlags, uint8 const _instance, Driver::MsgQueue const _queue );
53
+ virtual bool RequestValue( uint32 const _requestFlags, uint8 const _index, uint8 const _instance, Driver::MsgQueue const _queue );
54
+ virtual uint8 const GetCommandClassId()const{ return StaticGetCommandClassId(); }
55
+ virtual string const GetCommandClassName()const{ return StaticGetCommandClassName(); }
56
+ virtual bool HandleMsg( uint8 const* _data, uint32 const _length, uint32 const _instance = 1 );
57
+
58
+ protected:
59
+ virtual void CreateVars( uint8 const _instance );
60
+
61
+ private:
62
+ ThermostatFanState( uint32 const _homeId, uint8 const _nodeId ): CommandClass( _homeId, _nodeId ){}
63
+ };
64
+
65
+ } // namespace OpenZWave
66
+
67
+ #endif
68
+
69
+
70
+
71
+
@@ -0,0 +1,373 @@
1
+ //-----------------------------------------------------------------------------
2
+ //
3
+ // ThermostatMode.cpp
4
+ //
5
+ // Implementation of the Z-Wave COMMAND_CLASS_THERMOSTAT_MODE
6
+ //
7
+ // Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
8
+ //
9
+ // SOFTWARE NOTICE AND LICENSE
10
+ //
11
+ // This file is part of OpenZWave.
12
+ //
13
+ // OpenZWave is free software: you can redistribute it and/or modify
14
+ // it under the terms of the GNU Lesser General Public License as published
15
+ // by the Free Software Foundation, either version 3 of the License,
16
+ // or (at your option) any later version.
17
+ //
18
+ // OpenZWave is distributed in the hope that it will be useful,
19
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
20
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21
+ // GNU Lesser General Public License for more details.
22
+ //
23
+ // You should have received a copy of the GNU Lesser General Public License
24
+ // along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
25
+ //
26
+ //-----------------------------------------------------------------------------
27
+
28
+ #include "CommandClasses.h"
29
+ #include "ThermostatMode.h"
30
+ #include "Defs.h"
31
+ #include "Msg.h"
32
+ #include "Node.h"
33
+ #include "Driver.h"
34
+ #include "Log.h"
35
+
36
+ #include "ValueList.h"
37
+
38
+ using namespace OpenZWave;
39
+
40
+ enum ThermostatModeCmd
41
+ {
42
+ ThermostatModeCmd_Set = 0x01,
43
+ ThermostatModeCmd_Get = 0x02,
44
+ ThermostatModeCmd_Report = 0x03,
45
+ ThermostatModeCmd_SupportedGet = 0x04,
46
+ ThermostatModeCmd_SupportedReport = 0x05
47
+ };
48
+
49
+ static char const* c_modeName[] =
50
+ {
51
+ "Off",
52
+ "Heat",
53
+ "Cool",
54
+ "Auto",
55
+ "Aux Heat",
56
+ "Resume",
57
+ "Fan Only",
58
+ "Furnace",
59
+ "Dry Air",
60
+ "Moist Air",
61
+ "Auto Changeover",
62
+ "Heat Econ",
63
+ "Cool Econ",
64
+ "Away"
65
+ };
66
+
67
+ //-----------------------------------------------------------------------------
68
+ // <ThermostatMode::ReadXML>
69
+ // Read the supported modes
70
+ //-----------------------------------------------------------------------------
71
+ void ThermostatMode::ReadXML
72
+ (
73
+ TiXmlElement const* _ccElement
74
+ )
75
+ {
76
+ CommandClass::ReadXML( _ccElement );
77
+
78
+ if( Node* node = GetNodeUnsafe() )
79
+ {
80
+ node = node;
81
+ vector<ValueList::Item> supportedModes;
82
+
83
+ TiXmlElement const* supportedModesElement = _ccElement->FirstChildElement( "SupportedModes" );
84
+ if( supportedModesElement )
85
+ {
86
+ TiXmlElement const* modeElement = supportedModesElement->FirstChildElement();
87
+ while( modeElement )
88
+ {
89
+ char const* str = modeElement->Value();
90
+ if( str && !strcmp( str, "Mode" ) )
91
+ {
92
+ int index;
93
+ if( TIXML_SUCCESS == modeElement->QueryIntAttribute( "index", &index ) )
94
+ {
95
+ ValueList::Item item;
96
+ item.m_value = index;
97
+ item.m_label = c_modeName[index];
98
+ supportedModes.push_back( item );
99
+ }
100
+ }
101
+
102
+ modeElement = modeElement->NextSiblingElement();
103
+ }
104
+ }
105
+
106
+ if( !supportedModes.empty() )
107
+ {
108
+ m_supportedModes = supportedModes;
109
+ ClearStaticRequest( StaticRequest_Values );
110
+ CreateVars( 1 );
111
+ }
112
+ }
113
+ }
114
+
115
+ //-----------------------------------------------------------------------------
116
+ // <ThermostatMode::WriteXML>
117
+ // Save the supported modes
118
+ //-----------------------------------------------------------------------------
119
+ void ThermostatMode::WriteXML
120
+ (
121
+ TiXmlElement* _ccElement
122
+ )
123
+ {
124
+ if( m_supportedModes.empty() )
125
+ {
126
+ return;
127
+ }
128
+
129
+ CommandClass::WriteXML( _ccElement );
130
+
131
+ if( Node* node = GetNodeUnsafe() )
132
+ {
133
+ node = node;
134
+ TiXmlElement* supportedModesElement = new TiXmlElement( "SupportedModes" );
135
+ _ccElement->LinkEndChild( supportedModesElement );
136
+
137
+ for( vector<ValueList::Item>::iterator it = m_supportedModes.begin(); it != m_supportedModes.end(); ++it )
138
+ {
139
+ ValueList::Item const& item = *it;
140
+
141
+ TiXmlElement* modeElement = new TiXmlElement( "Mode" );
142
+ supportedModesElement->LinkEndChild( modeElement );
143
+
144
+ char str[8];
145
+ snprintf( str, 8, "%d", item.m_value );
146
+ modeElement->SetAttribute( "index", str );
147
+ modeElement->SetAttribute( "label", item.m_label.c_str() );
148
+ }
149
+ }
150
+ }
151
+
152
+ //-----------------------------------------------------------------------------
153
+ // <ThermostatMode::RequestState>
154
+ // Get the static thermostat mode details from the device
155
+ //-----------------------------------------------------------------------------
156
+ bool ThermostatMode::RequestState
157
+ (
158
+ uint32 const _requestFlags,
159
+ uint8 const _instance,
160
+ Driver::MsgQueue const _queue
161
+ )
162
+ {
163
+ bool requests = false;
164
+ if( ( _requestFlags & RequestFlag_Static ) && HasStaticRequest( StaticRequest_Values ) )
165
+ {
166
+ // request supported mode list
167
+ requests |= RequestValue( _requestFlags, ThermostatModeCmd_SupportedGet, _instance, _queue );
168
+ }
169
+
170
+ if( _requestFlags & RequestFlag_Dynamic )
171
+ {
172
+ // Request the current mode
173
+ requests |= RequestValue( _requestFlags, 0, _instance, _queue );
174
+ }
175
+
176
+ return requests;
177
+ }
178
+
179
+ //-----------------------------------------------------------------------------
180
+ // <ThermostatMode::RequestValue>
181
+ // Get the static thermostat mode details from the device
182
+ //-----------------------------------------------------------------------------
183
+ bool ThermostatMode::RequestValue
184
+ (
185
+ uint32 const _requestFlags,
186
+ uint8 const _getTypeEnum,
187
+ uint8 const _instance,
188
+ Driver::MsgQueue const _queue
189
+ )
190
+ {
191
+ if( _getTypeEnum == ThermostatModeCmd_SupportedGet )
192
+ {
193
+ // Request the supported modes
194
+ Msg* msg = new Msg( "Request Supported Thermostat Modes", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true, true, FUNC_ID_APPLICATION_COMMAND_HANDLER, GetCommandClassId() );
195
+ msg->SetInstance( this, _instance );
196
+ msg->Append( GetNodeId() );
197
+ msg->Append( 2 );
198
+ msg->Append( GetCommandClassId() );
199
+ msg->Append( ThermostatModeCmd_SupportedGet );
200
+ msg->Append( TRANSMIT_OPTION_ACK | TRANSMIT_OPTION_AUTO_ROUTE );
201
+ GetDriver()->SendMsg( msg, _queue );
202
+ return true;
203
+ }
204
+
205
+ if( _getTypeEnum == 0 ) // get current mode
206
+ {
207
+ // Request the current mode
208
+ Msg* msg = new Msg( "Request Current Thermostat Mode", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true, true, FUNC_ID_APPLICATION_COMMAND_HANDLER, GetCommandClassId() );
209
+ msg->SetInstance( this, _instance );
210
+ msg->Append( GetNodeId() );
211
+ msg->Append( 2 );
212
+ msg->Append( GetCommandClassId() );
213
+ msg->Append( ThermostatModeCmd_Get );
214
+ msg->Append( TRANSMIT_OPTION_ACK | TRANSMIT_OPTION_AUTO_ROUTE );
215
+ GetDriver()->SendMsg( msg, _queue );
216
+ return true;
217
+ }
218
+ return false;
219
+ }
220
+
221
+ //-----------------------------------------------------------------------------
222
+ // <ThermostatMode::HandleMsg>
223
+ // Handle a message from the Z-Wave network
224
+ //-----------------------------------------------------------------------------
225
+ bool ThermostatMode::HandleMsg
226
+ (
227
+ uint8 const* _data,
228
+ uint32 const _length,
229
+ uint32 const _instance // = 1
230
+ )
231
+ {
232
+ if( ThermostatModeCmd_Report == (ThermostatModeCmd)_data[0] )
233
+ {
234
+ uint8 mode = _data[1]&0x1f;
235
+
236
+ if( mode < m_supportedModes.size() )
237
+ {
238
+ // We have received the thermostat mode from the Z-Wave device
239
+ if( ValueList* valueList = static_cast<ValueList*>( GetValue( _instance, 0 ) ) )
240
+ {
241
+ valueList->OnValueRefreshed( mode );
242
+ Log::Write( LogLevel_Info, GetNodeId(), "Received thermostat mode: %s", valueList->GetItem().m_label.c_str() );
243
+ valueList->Release();
244
+ }
245
+ else
246
+ {
247
+ Log::Write( LogLevel_Info, GetNodeId(), "Received thermostat mode: index %d", mode );
248
+ }
249
+ }
250
+ else
251
+ {
252
+ Log::Write( LogLevel_Info, GetNodeId(), "Received unknown thermostat mode: index %d", mode );
253
+ }
254
+ return true;
255
+ }
256
+
257
+ if( ThermostatModeCmd_SupportedReport == (ThermostatModeCmd)_data[0] )
258
+ {
259
+ // We have received the supported thermostat modes from the Z-Wave device
260
+ // these values are used to populate m_supportedModes which, in turn, is used to "seed" the values
261
+ // for each m_modes instance
262
+ Log::Write( LogLevel_Info, GetNodeId(), "Received supported thermostat modes" );
263
+
264
+ m_supportedModes.clear();
265
+ for( uint32 i=1; i<_length-1; ++i )
266
+ {
267
+ for( int32 bit=0; bit<8; ++bit )
268
+ {
269
+ if( ( _data[i] & (1<<bit) ) != 0 )
270
+ {
271
+ ValueList::Item item;
272
+ item.m_value = (int32)((i-1)<<3) + bit;
273
+
274
+ if ((size_t)item.m_value >= sizeof(c_modeName)/sizeof(*c_modeName))
275
+ {
276
+ Log::Write( LogLevel_Info, GetNodeId(), "Received unknown thermostat mode: 0x%x", item.m_value);
277
+ }
278
+ else
279
+ {
280
+ item.m_label = c_modeName[item.m_value];
281
+ m_supportedModes.push_back( item );
282
+
283
+ Log::Write( LogLevel_Info, GetNodeId(), " Added mode: %s", c_modeName[item.m_value] );
284
+ }
285
+ }
286
+ }
287
+ }
288
+
289
+ ClearStaticRequest( StaticRequest_Values );
290
+ CreateVars( _instance );
291
+ return true;
292
+ }
293
+
294
+ return false;
295
+ }
296
+
297
+ //-----------------------------------------------------------------------------
298
+ // <ThermostatMode::SetValue>
299
+ // Set the device's thermostat mode
300
+ //-----------------------------------------------------------------------------
301
+ bool ThermostatMode::SetValue
302
+ (
303
+ Value const& _value
304
+ )
305
+ {
306
+ if( ValueID::ValueType_List == _value.GetID().GetType() )
307
+ {
308
+ ValueList const* value = static_cast<ValueList const*>(&_value);
309
+ uint8 state = (uint8)value->GetNewItem().m_value;
310
+
311
+ Msg* msg = new Msg( "Set Thermostat Mode", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true );
312
+ msg->Append( GetNodeId() );
313
+ msg->Append( 3 );
314
+ msg->Append( GetCommandClassId() );
315
+ msg->Append( ThermostatModeCmd_Set );
316
+ msg->Append( state );
317
+ msg->Append( TRANSMIT_OPTION_ACK | TRANSMIT_OPTION_AUTO_ROUTE );
318
+ GetDriver()->SendMsg( msg, Driver::MsgQueue_Send );
319
+ return true;
320
+ }
321
+
322
+ return false;
323
+ }
324
+
325
+ //-----------------------------------------------------------------------------
326
+ // <ThermostatMode::CreateVars>
327
+ // Create the values managed by this command class
328
+ //-----------------------------------------------------------------------------
329
+ void ThermostatMode::CreateVars
330
+ (
331
+ uint8 const _instance
332
+ )
333
+ {
334
+ // There are three ways to get here...each needs to be handled differently:
335
+ // QueryStage_ProtocolInfo:
336
+ // Don't know what's supported yet, so do nothing
337
+ // QueryStage_NodeInfo:
338
+ // Need to create the instance so the values can be read from the xml file
339
+ // QueryStage_Static:
340
+ // Need to create the instance (processing SupportedReport) if it doesn't exist
341
+ // If it does, populate with the appropriate values
342
+
343
+ if( Node* node = GetNodeUnsafe() )
344
+ {
345
+ Node::QueryStage qs = node->GetCurrentQueryStage();
346
+ if( qs == Node::QueryStage_ProtocolInfo )
347
+ {
348
+ // this call is from QueryStage_ProtocolInfo,
349
+ // so just return (don't know which modes are supported yet)
350
+ return;
351
+ }
352
+
353
+ // identify the lowest supported mode as the "default" (or default to 0 if no supported modes identified yet)
354
+ int32 defaultValue = 0;
355
+ if( !m_supportedModes.empty() )
356
+ {
357
+ defaultValue = m_supportedModes[0].m_value;
358
+ }
359
+
360
+ if( qs == Node::QueryStage_Static )
361
+ {
362
+ // This instance might already have been created (in NodeInfo, in preparation for loading the values
363
+ // from zwcfg xml file). So, if the instance already exists, we delete its value and add a new one below
364
+ if( ValueList* valueList = static_cast<ValueList*>( GetValue( _instance, 0 ) ) )
365
+ {
366
+ node->RemoveValueList( valueList );
367
+ valueList->Release();
368
+ }
369
+ }
370
+
371
+ node->CreateValueList( ValueID::ValueGenre_User, GetCommandClassId(), _instance, 0, "Mode", "", false, false, 1, m_supportedModes, defaultValue, 0 );
372
+ }
373
+ }