mirror of
https://github.com/esphome/esphome.git
synced 2025-03-14 04:25:15 +01:00
const char
This commit is contained in:
parent
4eb22646c5
commit
4dddf6dd41
2 changed files with 2 additions and 2 deletions
|
@ -382,7 +382,7 @@ void EbyteLoraComponent::set_mode_(ModeType mode) {
|
|||
}
|
||||
this->config_mode_ = mode;
|
||||
}
|
||||
bool EbyteLoraComponent::can_send_message_(char *info) {
|
||||
bool EbyteLoraComponent::can_send_message_(const char *info) {
|
||||
// High means no more information is needed
|
||||
if (this->pin_aux_->digital_read()) {
|
||||
this->flush();
|
||||
|
|
|
@ -106,7 +106,7 @@ class EbyteLoraComponent : public PollingComponent, public uart::UARTDevice {
|
|||
void send_data_(bool all);
|
||||
void request_repeater_info_();
|
||||
void send_repeater_info_();
|
||||
bool can_send_message_(char *info);
|
||||
bool can_send_message_(const char *info);
|
||||
|
||||
protected:
|
||||
bool updated_{};
|
||||
|
|
Loading…
Add table
Reference in a new issue