* added tx20 wind speed sensor * added test * fixed lint errors * fixed more lint errors * updated tx20 * updated tx20 sensor * updated to new structure and removed static variables * removed content from __init__.py * fixing lint errors * resolved issues from review * added as3935 sensor * updated as3935 with more settings * update * support for i2c + spi updated * added tests and various fixes * added tx20 wind speed sensor * fixed lint errors * fixed more lint errors * updated tx20 * updated tx20 sensor * updated to new structure and removed static variables * removed content from __init__.py * fixing lint errors * resolved issues from review * added as3935 sensor * updated as3935 with more settings * update * support for i2c + spi updated * added tests and various fixes * updated tests * fixed style issues * Remove debug line * Update log levels * Reformat * Auto-convert to int Co-authored-by: Thomas <thomas.eckerstorfer@mic-cust.com> Co-authored-by: Otto Winter <otto@otto-winter.com>
37 lines
866 B
C++
37 lines
866 B
C++
#include "as3935_i2c.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace as3935_i2c {
|
|
|
|
static const char *TAG = "as3935_i2c";
|
|
|
|
void I2CAS3935Component::write_register(uint8_t reg, uint8_t mask, uint8_t bits, uint8_t start_pos) {
|
|
uint8_t write_reg;
|
|
if (!this->read_byte(reg, &write_reg)) {
|
|
this->mark_failed();
|
|
ESP_LOGW(TAG, "read_byte failed - increase log level for more details!");
|
|
return;
|
|
}
|
|
|
|
write_reg &= (~mask);
|
|
write_reg |= (bits << start_pos);
|
|
|
|
if (!this->write_byte(reg, write_reg)) {
|
|
ESP_LOGW(TAG, "write_byte failed - increase log level for more details!");
|
|
return;
|
|
}
|
|
}
|
|
|
|
uint8_t I2CAS3935Component::read_register(uint8_t reg) {
|
|
uint8_t value;
|
|
if (!this->read_byte(reg, &value, 2)) {
|
|
ESP_LOGW(TAG, "Read failed!");
|
|
return 0;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
} // namespace as3935_i2c
|
|
} // namespace esphome
|