mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 16:08:10 +01:00
config
This commit is contained in:
parent
06dc4d933d
commit
eb3d5b8953
2 changed files with 28 additions and 27 deletions
|
@ -5,13 +5,13 @@ static const uint8_t SWITCH_PUSH = 0x55;
|
||||||
static const uint8_t SWITCH_INFO = 0x66;
|
static const uint8_t SWITCH_INFO = 0x66;
|
||||||
static const uint8_t PROGRAM_CONF = 0xC1;
|
static const uint8_t PROGRAM_CONF = 0xC1;
|
||||||
void EbyteLoraComponent::update() {
|
void EbyteLoraComponent::update() {
|
||||||
if (this->config.config_set == 0) {
|
if (this->current_config_.config_set == 0) {
|
||||||
ESP_LOGD(TAG, "Config not set yet!, gonna request it now!");
|
ESP_LOGD(TAG, "Config not set yet!, gonna request it now!");
|
||||||
this->get_current_config_();
|
this->get_current_config_();
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
ESP_LOGD(TAG, "Got a config:");
|
ESP_LOGD(TAG, "Got a config:");
|
||||||
switch (this->config.air_data_rate) {
|
switch (this->current_config_.air_data_rate) {
|
||||||
case AIR_2_4KB:
|
case AIR_2_4KB:
|
||||||
ESP_LOGD(TAG, "air_data_rate: 2.4kb");
|
ESP_LOGD(TAG, "air_data_rate: 2.4kb");
|
||||||
break;
|
break;
|
||||||
|
@ -31,7 +31,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "air_data_rate: 62.5kb");
|
ESP_LOGD(TAG, "air_data_rate: 62.5kb");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.uart_baud) {
|
switch (this->current_config_.uart_baud) {
|
||||||
case UART_1200:
|
case UART_1200:
|
||||||
ESP_LOGD(TAG, "uart_baud: 1200");
|
ESP_LOGD(TAG, "uart_baud: 1200");
|
||||||
break;
|
break;
|
||||||
|
@ -57,7 +57,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "uart_baud: 115200");
|
ESP_LOGD(TAG, "uart_baud: 115200");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.parity) {
|
switch (this->current_config_.parity) {
|
||||||
case EBYTE_UART_8N1:
|
case EBYTE_UART_8N1:
|
||||||
ESP_LOGD(TAG, "uart_parity: 8N1");
|
ESP_LOGD(TAG, "uart_parity: 8N1");
|
||||||
break;
|
break;
|
||||||
|
@ -68,7 +68,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "uart_parity: 8E1");
|
ESP_LOGD(TAG, "uart_parity: 8E1");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.rssi_noise) {
|
switch (this->current_config_.rssi_noise) {
|
||||||
case EBYTE_ENABLED:
|
case EBYTE_ENABLED:
|
||||||
ESP_LOGD(TAG, "rssi_noise: ENABLED");
|
ESP_LOGD(TAG, "rssi_noise: ENABLED");
|
||||||
break;
|
break;
|
||||||
|
@ -76,7 +76,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "rssi_noise: DISABLED");
|
ESP_LOGD(TAG, "rssi_noise: DISABLED");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.sub_packet) {
|
switch (this->current_config_.sub_packet) {
|
||||||
case SUB_200B:
|
case SUB_200B:
|
||||||
ESP_LOGD(TAG, "sub_packet: 200 bytes");
|
ESP_LOGD(TAG, "sub_packet: 200 bytes");
|
||||||
break;
|
break;
|
||||||
|
@ -90,7 +90,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "sub_packet: 32 bytes");
|
ESP_LOGD(TAG, "sub_packet: 32 bytes");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.transmission_power) {
|
switch (this->current_config_.transmission_power) {
|
||||||
case TX_DEFAULT_MAX:
|
case TX_DEFAULT_MAX:
|
||||||
ESP_LOGD(TAG, "transmission_power: default or max");
|
ESP_LOGD(TAG, "transmission_power: default or max");
|
||||||
break;
|
break;
|
||||||
|
@ -104,8 +104,8 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "transmission_power: Lowest");
|
ESP_LOGD(TAG, "transmission_power: Lowest");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
ESP_LOGD(TAG, "channel: %u", this->config.channel);
|
ESP_LOGD(TAG, "channel: %u", this->current_config_.channel);
|
||||||
switch (this->config.enable_lbt) {
|
switch (this->current_config_.enable_lbt) {
|
||||||
case EBYTE_ENABLED:
|
case EBYTE_ENABLED:
|
||||||
ESP_LOGD(TAG, "enable_lbt: ENABLED");
|
ESP_LOGD(TAG, "enable_lbt: ENABLED");
|
||||||
break;
|
break;
|
||||||
|
@ -113,7 +113,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "enable_lbt: DISABLED");
|
ESP_LOGD(TAG, "enable_lbt: DISABLED");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.transmission_mode) {
|
switch (this->current_config_.transmission_mode) {
|
||||||
case TRANSPARENT:
|
case TRANSPARENT:
|
||||||
ESP_LOGD(TAG, "transmission_type: TRANSPARENT");
|
ESP_LOGD(TAG, "transmission_type: TRANSPARENT");
|
||||||
break;
|
break;
|
||||||
|
@ -121,7 +121,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "transmission_type: FIXED");
|
ESP_LOGD(TAG, "transmission_type: FIXED");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.enable_rssi) {
|
switch (this->current_config_.enable_rssi) {
|
||||||
case EBYTE_ENABLED:
|
case EBYTE_ENABLED:
|
||||||
ESP_LOGD(TAG, "enable_rssi: ENABLED");
|
ESP_LOGD(TAG, "enable_rssi: ENABLED");
|
||||||
break;
|
break;
|
||||||
|
@ -129,7 +129,7 @@ void EbyteLoraComponent::update() {
|
||||||
ESP_LOGD(TAG, "enable_rssi: DISABLED");
|
ESP_LOGD(TAG, "enable_rssi: DISABLED");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (this->config.wor_period) {
|
switch (this->current_config_.wor_period) {
|
||||||
case WOR_500:
|
case WOR_500:
|
||||||
ESP_LOGD(TAG, "wor_period: 500");
|
ESP_LOGD(TAG, "wor_period: 500");
|
||||||
break;
|
break;
|
||||||
|
@ -354,41 +354,41 @@ void EbyteLoraComponent::loop() {
|
||||||
}
|
}
|
||||||
void EbyteLoraComponent::setup_conf_(std::vector<uint8_t> data) {
|
void EbyteLoraComponent::setup_conf_(std::vector<uint8_t> data) {
|
||||||
ESP_LOGD(TAG, "Config set");
|
ESP_LOGD(TAG, "Config set");
|
||||||
this->config.config_set = 1;
|
this->current_config_.config_set = 1;
|
||||||
for (int i = 0; i < data.size(); i++) {
|
for (int i = 0; i < data.size(); i++) {
|
||||||
// 3 is addh
|
// 3 is addh
|
||||||
if (i == 3) {
|
if (i == 3) {
|
||||||
this->config.addh = data[i];
|
this->current_config_.addh = data[i];
|
||||||
}
|
}
|
||||||
// 4 is addl
|
// 4 is addl
|
||||||
if (i == 4) {
|
if (i == 4) {
|
||||||
this->config.addl = data[i];
|
this->current_config_.addl = data[i];
|
||||||
}
|
}
|
||||||
// 5 is reg0, which is air_data for first 3 bits, then parity for 2, uart_baud for 3
|
// 5 is reg0, which is air_data for first 3 bits, then parity for 2, uart_baud for 3
|
||||||
if (i == 5) {
|
if (i == 5) {
|
||||||
ESP_LOGD(TAG, "reg0: %c%c%c%c%c%c%c%c", BYTE_TO_BINARY(data[i]));
|
ESP_LOGD(TAG, "reg0: %c%c%c%c%c%c%c%c", BYTE_TO_BINARY(data[i]));
|
||||||
this->config.air_data_rate = (data[i] >> 0) & 0b111;
|
this->current_config_.air_data_rate = (data[i] >> 0) & 0b111;
|
||||||
this->config.parity = (data[i] >> 3) & 0b11;
|
this->current_config_.parity = (data[i] >> 3) & 0b11;
|
||||||
this->config.uart_baud = (data[i] >> 5) & 0b111;
|
this->current_config_.uart_baud = (data[i] >> 5) & 0b111;
|
||||||
}
|
}
|
||||||
// 6 is reg1; transmission_power : 2, reserve : 3, rssi_noise : 1, sub_packet : 2
|
// 6 is reg1; transmission_power : 2, reserve : 3, rssi_noise : 1, sub_packet : 2
|
||||||
if (i == 6) {
|
if (i == 6) {
|
||||||
ESP_LOGD(TAG, "reg1: %c%c%c%c%c%c%c%c", BYTE_TO_BINARY(data[i]));
|
ESP_LOGD(TAG, "reg1: %c%c%c%c%c%c%c%c", BYTE_TO_BINARY(data[i]));
|
||||||
this->config.transmission_power = (data[i] >> 0) & 0b11;
|
this->current_config_.transmission_power = (data[i] >> 0) & 0b11;
|
||||||
this->config.rssi_noise = (data[i] >> 5) & 0b1;
|
this->current_config_.rssi_noise = (data[i] >> 5) & 0b1;
|
||||||
this->config.sub_packet = (data[i] >> 6) & 0b11;
|
this->current_config_.sub_packet = (data[i] >> 6) & 0b11;
|
||||||
}
|
}
|
||||||
// 7 is reg2; channel
|
// 7 is reg2; channel
|
||||||
if (i == 7) {
|
if (i == 7) {
|
||||||
this->config.channel = data[i];
|
this->current_config_.channel = data[i];
|
||||||
}
|
}
|
||||||
// 8 is reg3; wor_period:3, reserve:1, enable_lbt:1, reserve:1, transmission_mode:1, enable_rssi:1
|
// 8 is reg3; wor_period:3, reserve:1, enable_lbt:1, reserve:1, transmission_mode:1, enable_rssi:1
|
||||||
if (i == 7) {
|
if (i == 7) {
|
||||||
ESP_LOGD(TAG, "reg3: %c%c%c%c%c%c%c%c", BYTE_TO_BINARY(data[i]));
|
ESP_LOGD(TAG, "reg3: %c%c%c%c%c%c%c%c", BYTE_TO_BINARY(data[i]));
|
||||||
this->config.wor_period = (data[i] >> 0) & 0b111;
|
this->current_config_.wor_period = (data[i] >> 0) & 0b111;
|
||||||
this->config.enable_lbt = (data[i] >> 4) & 0b1;
|
this->current_config_.enable_lbt = (data[i] >> 4) & 0b1;
|
||||||
this->config.transmission_mode = (data[i] >> 6) & 0b1;
|
this->current_config_.transmission_mode = (data[i] >> 6) & 0b1;
|
||||||
this->config.enable_rssi = (data[i] >> 7) & 0b1;
|
this->current_config_.enable_rssi = (data[i] >> 7) & 0b1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,8 @@ class EbyteLoraComponent : public PollingComponent, public uart::UARTDevice {
|
||||||
uint32_t starting_to_check_;
|
uint32_t starting_to_check_;
|
||||||
uint32_t time_out_after_;
|
uint32_t time_out_after_;
|
||||||
std::string raw_message_;
|
std::string raw_message_;
|
||||||
RegisterConfig config;
|
RegisterConfig current_config_;
|
||||||
|
RegisterConfig expected_config_;
|
||||||
sensor::Sensor *rssi_sensor_{nullptr};
|
sensor::Sensor *rssi_sensor_{nullptr};
|
||||||
GPIOPin *pin_aux_;
|
GPIOPin *pin_aux_;
|
||||||
GPIOPin *pin_m0_;
|
GPIOPin *pin_m0_;
|
||||||
|
|
Loading…
Reference in a new issue