mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-27 12:46:34 +00:00
Change max number of supported PCF8574 to four
Change max number of supported PCF8574 to four (#8355)
This commit is contained in:
parent
73a153f265
commit
87f89f0a7d
@ -481,6 +481,9 @@ struct {
|
|||||||
uint8_t shutter_position[MAX_SHUTTERS]; // E80
|
uint8_t shutter_position[MAX_SHUTTERS]; // E80
|
||||||
uint8_t shutter_startrelay[MAX_SHUTTERS]; // E84
|
uint8_t shutter_startrelay[MAX_SHUTTERS]; // E84
|
||||||
uint8_t pcf8574_config[MAX_PCF8574]; // E88
|
uint8_t pcf8574_config[MAX_PCF8574]; // E88
|
||||||
|
|
||||||
|
uint8_t free_e8c[4]; // E8C
|
||||||
|
|
||||||
uint16_t dimmer_hw_min; // E90
|
uint16_t dimmer_hw_min; // E90
|
||||||
uint16_t dimmer_hw_max; // E92
|
uint16_t dimmer_hw_max; // E92
|
||||||
uint32_t deepsleep; // E94
|
uint32_t deepsleep; // E94
|
||||||
|
@ -68,7 +68,7 @@ const uint8_t MAX_XDRV_DRIVERS = 96; // Max number of allowed driver driv
|
|||||||
const uint8_t MAX_XSNS_DRIVERS = 96; // Max number of allowed sensor drivers
|
const uint8_t MAX_XSNS_DRIVERS = 96; // Max number of allowed sensor drivers
|
||||||
const uint8_t MAX_I2C_DRIVERS = 96; // Max number of allowed i2c drivers
|
const uint8_t MAX_I2C_DRIVERS = 96; // Max number of allowed i2c drivers
|
||||||
const uint8_t MAX_SHUTTERS = 4; // Max number of shutters
|
const uint8_t MAX_SHUTTERS = 4; // Max number of shutters
|
||||||
const uint8_t MAX_PCF8574 = 8; // Max number of PCF8574 devices
|
const uint8_t MAX_PCF8574 = 4; // Max number of PCF8574 devices
|
||||||
const uint8_t MAX_RULE_SETS = 3; // Max number of rule sets of size 512 characters
|
const uint8_t MAX_RULE_SETS = 3; // Max number of rule sets of size 512 characters
|
||||||
const uint16_t MAX_RULE_SIZE = 512; // Max number of characters in rules
|
const uint16_t MAX_RULE_SIZE = 512; // Max number of characters in rules
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user