Commit 7edb7c4e5453b2fbac88a083ed25720b4d0f8a5f
1 parent
9311d746
Move reading TSPs and Fault Buffer entries from read to read/write
Showing
1 changed file
with
6 additions
and
2 deletions
src/EasyOpenTherm.h
| ... | ... | @@ -94,6 +94,12 @@ public: |
| 94 | 94 | // Class 3 : Remote Commands |
| 95 | 95 | COMMAND_CODE = 4, // u8, u8 Command code / Response to command |
| 96 | 96 | |
| 97 | + // Class 6 : Transparent Secondary Parameters | |
| 98 | + TSP_COMMAND = 11, // u8, u8 Index number of following TSP, Value of the referenced TSP | |
| 99 | + | |
| 100 | + // Class 7 : Fault History Data | |
| 101 | + FAULT_BUFFER_DATA = 13, // u8, u8 Index number of Fault Buffer entry, Value of the referenced Fault Buffer entry | |
| 102 | + | |
| 97 | 103 | // Incomplete information for all DATA-IDs below. If these DATA-IDs are R, W or R/W is unknown. Also the data type is unknown and deducted from the name. These DATA-IDs are not ordered by class |
| 98 | 104 | // Where applicable and available flags and masks are also defined below |
| 99 | 105 | |
| ... | ... | @@ -151,11 +157,9 @@ public: |
| 151 | 157 | |
| 152 | 158 | // Class 6 : Transparent Secondary Parameters |
| 153 | 159 | NUMBER_OF_TSPS = 10, // u8, u8 Number of transparent-secondary-parameter supported by the secondary device, -Reserved- |
| 154 | - TSP_COMMAND = 11, // u8, u8 Index number of following TSP, Value of the referenced TSP | |
| 155 | 160 | |
| 156 | 161 | // Class 7 : Fault History Data |
| 157 | 162 | FAULT_BUFFER_SIZE = 12, // u8, u8 The size of the fault history buffer, -Reserved- |
| 158 | - FAULT_BUFFER_DATA = 13, // u8, u8 Index number of Fault Buffer entry, Value of the referenced Fault Buffer entry | |
| 159 | 163 | |
| 160 | 164 | // Class 8 : Control of Special Applications |
| 161 | 165 | MAX_BOILER_CAPACITY_MIN_MOD_LEV = 15, // u8, u8 MSB : max. boiler capacity (0..255kW), LSB : min. modulation level (0..100%) expressed as a percentage of the maximum capacity | ... | ... |