8static const char *
const TAG =
"sx1509";
11 ESP_LOGV(TAG,
" Resetting devices");
34 ESP_LOGCONFIG(TAG,
"SX1509:");
36 ESP_LOGE(TAG,
"Setting up SX1509 failed!");
51 binary_sensor->process(key_data);
52 if (this->
keys_.empty())
59 for (row = 0; row < 7; row++) {
60 if (key_data & (1 << row))
63 for (col = 8; col < 15; col++) {
64 if (key_data & (1 << col))
68 uint8_t key = this->
keys_[row * this->
cols_ + col];
72 ESP_LOGV(TAG,
"row %d, col %d, key '%c'", row, col, key);
74 trigger->trigger(key);
95 uint16_t temp_reg_data = 0;
102 for (uint16_t b = 0x8000; b; b >>= 1) {
116 ESP_LOGI(TAG,
"Configuring pin %u with flags %x", pin,
flags);
118 uint16_t temp_word = 0;
124 temp_word |= (1 << pin);
130 temp_word &= ~(1 << pin);
133 temp_word |= (1 << pin);
135 ESP_LOGD(TAG,
"Open drain output mode set for %u", pin);
137 ESP_LOGD(TAG,
"Output Mode for %u", pin);
144 ESP_LOGD(TAG,
"Input Mode for %u", pin);
148 temp_word &= ~(1 << pin);
154 temp_word |= (1 << pin);
156 temp_word &= ~(1 << pin);
163 temp_word |= (1 << pin);
165 temp_word &= ~(1 << pin);
176 uint16_t temp_word = 0;
177 uint8_t temp_byte = 0;
180 temp_word |= (1 << pin);
187 temp_byte |= (1 << 6);
188 temp_byte &= ~(1 << 5);
192 temp_byte &= ~(1 << 7);
193 temp_byte &= ~(1 << 3);
198 temp_word |= (1 << pin);
202 temp_word &= ~(1 << pin);
208 osc_source = (osc_source & 0b11) << 5;
209 osc_pin_function = (osc_pin_function & 1) << 4;
210 osc_freq_out = (osc_freq_out & 0b1111);
211 uint8_t reg_clock = osc_source | osc_pin_function | osc_freq_out;
214 osc_divider = clamp<uint8_t>(osc_divider, 1, 7u);
216 osc_divider = (osc_divider & 0b111) << 4;
218 uint8_t reg_misc = 0;
220 reg_misc &= ~(0b111 << 4);
221 reg_misc |= osc_divider;
226 uint8_t temp_byte = 0;
230 for (
int i = 0; i < this->
rows_; i++)
232 for (
int i = 8; i < (this->
cols_ * 2); i++)
237 for (
int i = 0; i < this->
rows_; i++)
238 temp_byte |= (1 << i);
242 for (
int i = 0; i < this->
cols_; i++)
243 temp_byte |= (1 << i);
250 uint8_t scan_time_bits = 0;
251 for (uint8_t i = 7; i > 0; i--) {
257 scan_time_bits &= 0b111;
260 temp_byte = ((this->rows_ - 1) & 0b111) << 3;
261 temp_byte |= (this->cols_ - 1) & 0b111;
266 uint16_t key_data = 0;
268 return (0xFFFF ^ key_data);
273 uint8_t temp_byte = 0;
275 temp_byte |= (1 << 4);
278 temp_byte |= (1 << 6);
281 config_value &= 0b111;
286 uint8_t config_value = 0;
288 for (
int i = 7; i >= 0; i--) {
289 if (time & (1 << i)) {
290 config_value = i + 1;
294 config_value = clamp<uint8_t>(config_value, 0, 7);
300 uint16_t debounce_enable = 0;
302 debounce_enable |= (1 << pin);
310 for (uint16_t i = 0; i < num_rows; i++)
312 for (uint16_t i = 0; i < (8 + num_cols); i++)
virtual void mark_failed()
Mark this component as failed.
bool write_byte(uint8_t a_register, uint8_t data) const
bool read_byte(uint8_t a_register, uint8_t *data)
bool read_byte_16(uint8_t a_register, uint16_t *data)
bool write_byte_16(uint8_t a_register, uint16_t data) const
void send_key_(uint8_t key)
bool digital_read_cache(uint8_t pin) override
void clock_(uint8_t osc_source=2, uint8_t osc_pin_function=1, uint8_t osc_freq_out=0, uint8_t osc_divider=0)
void dump_config() override
void set_debounce_pin_(uint8_t pin)
bool digital_read_hw(uint8_t pin) override
void set_debounce_config_(uint8_t config_value)
std::vector< SX1509KeyTrigger * > key_triggers_
void set_debounce_time_(uint8_t time)
void set_debounce_keypad_(uint8_t time, uint8_t num_rows, uint8_t num_cols)
uint32_t last_loop_timestamp_
void pin_mode(uint8_t pin, gpio::Flags flags)
std::vector< SX1509Processor * > keypad_binary_sensors_
void digital_write_hw(uint8_t pin, bool value) override
void setup_led_driver(uint8_t pin)
void set_debounce_enable_(uint8_t pin)
const uint32_t min_loop_period_
const uint8_t REG_DEBOUNCE_CONFIG
const uint8_t REG_KEY_CONFIG_2
const uint8_t REG_LED_DRIVER_ENABLE_B
const uint8_t REG_KEY_CONFIG_1
const uint8_t REG_OPEN_DRAIN_B
const uint8_t REG_PULL_UP_B
const uint8_t REG_INPUT_DISABLE_B
const uint8_t REG_DEBOUNCE_ENABLE_B
const uint8_t REG_INTERRUPT_MASK_A
const uint8_t REG_PULL_DOWN_B
const uint8_t INTERNAL_CLOCK_2MHZ
const uint8_t REG_OPEN_DRAIN_A
const uint8_t REG_KEY_DATA_1
Providing packet encoding functions for exchanging data with a remote host.
void IRAM_ATTR HOT delayMicroseconds(uint32_t us)
uint32_t IRAM_ATTR HOT millis()