Feature #1681
Extract thermostat status
Start date:
01/14/2017
Due date:
% Done:
0%
History
#2 Updated by Luke Murphey almost 8 years ago
#4 Updated by Luke Murphey almost 8 years ago
This search extracts the mode and status_flag:
sourcetype=insteon_plm cmd1=2e extended=1 data=01* ((category=5 subcategory=b) OR (category=3 subcategory=37)) `extract_thermostat_data_ex` | eval mode_raw=tonumber(substr(data,11, 2),16) | eval sys_mode=floor(mode_raw/16) | eval mode_raw_str=substr(data,11, 2) | eval fan_mode=mode_raw%16 | eval status_flag_str=substr(data,21, 2) | eval status_flag=tonumber(status_flag_str, 16)
#5 Updated by Luke Murphey almost 8 years ago
The thermostat had a status flag of 96 (110000) when off and a status flag of 66 (010010) when heating.
#6 Updated by Luke Murphey almost 8 years ago
- File status_flag.xlsx added