Changes between Version 33 and Version 34 of Proposal
- Timestamp:
- Jun 14, 2013, 1:21:04 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Proposal
v33 v34 111 111 We also check if the speed has reached the speed limit; if so, we change the corresponding Datapoint value, which wil, in turn, send the value on the bus if needed (a special value of the flag, like in '''linknx''', can force the value to be sent, even if it does not change). 112 112 113 A last thing: is is possible to compute and print the '''map table''': 114 115 {{{ 116 #!python 117 118 print ets.computeMapTable() 119 120 {'byDP': {'humidity (station)': ['1/1/2'], 121 'temperature (station)': ['1/1/1'], 122 'wind_alarm (station)': ['1/1/4'], 123 'wind_alarm_enable (station)': ['1/1/6'], 124 'wind_speed (station)': ['1/1/3'], 125 'wind_speed_limit (station)': ['1/1/5']}, 126 'byGAD': {'1/1/1': ['temperature (station)'], 127 '1/1/2': ['humidity (station)'], 128 '1/1/3': ['wind_speed (station)'], 129 '1/1/4': ['wind_alarm (station)'], 130 '1/1/5': ['wind_speed_limit (station)'], 131 '1/1/6': ['wind_alarm_enable (station)']}} 132 }}} 133 113 134 That's it for now. This is only a draft version; final implementation may change, according to feedback/suggestions I will get. But the core is all there. Again, the goal of the framework is to provide very high level tools to build complete and powerfull applications and KNX extensions. 114 135