Update settings.h

This commit is contained in:
Adrian 2018-04-03 00:48:12 -03:00 committed by GitHub
parent 42aff9d075
commit 0c98d14813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -257,10 +257,10 @@ struct SYSCFG {
uint16_t knx_physsical_addr; // 6B0 (address_t is a uint16_t)
byte knx_GA_registered; // 6B3 Number of Group Address to read
byte knx_CB_registered; // 6B4 Number of Group Address to write
uint16_t knx_GA_addr[KNX_max_GA]; // 6B5 (address_t is a uint16_t) x KNX_max_GA
uint16_t knx_CB_addr[KNX_max_CB]; // 6C9 (address_t is a uint16_t) x KNX_max_CB
byte knx_GA_param[KNX_max_GA]; // 6DD Type of Input (relay changed, button pressed, sensor read <-teleperiod)
byte knx_CB_param[KNX_max_GA]; // 6E7 Type of Output (set relay, toggle relay, reply sensor value)
uint16_t knx_GA_addr[MAX_KNX_GA]; // 6B5 (address_t is a uint16_t) x KNX_max_GA
uint16_t knx_CB_addr[MAX_KNX_CB]; // 6C9 (address_t is a uint16_t) x KNX_max_CB
byte knx_GA_param[MAX_KNX_GA]; // 6DD Type of Input (relay changed, button pressed, sensor read <-teleperiod)
byte knx_CB_param[MAX_KNX_CB]; // 6E7 Type of Output (set relay, toggle relay, reply sensor value)
// 6F1 - FFF free locations
} Settings;