10 static const char *
const TAG =
"nextion";
34 ESP_LOGN(TAG,
"send_command %s", command.c_str());
37 const uint8_t to_send[3] = {0xFF, 0xFF, 0xFF};
49 ESP_LOGW(TAG,
"Nextion display set as connected without performing handshake");
78 if (!response.empty() && response[0] == 0x1A) {
80 ESP_LOGD(TAG,
"0x1A error ignored during setup");
83 if (response.empty() || response.find(
"comok") == std::string::npos) {
84 #ifdef NEXTION_PROTOCOL_LOG 85 ESP_LOGN(TAG,
"Bad connect request %s", response.c_str());
86 for (
size_t i = 0; i < response.length(); i++) {
87 ESP_LOGN(TAG,
"response %s %d %d %c", response.c_str(), i, response[i], response[i]);
91 ESP_LOGW(TAG,
"Nextion is not connected! ");
97 ESP_LOGI(TAG,
"Nextion is connected");
100 ESP_LOGN(TAG,
"connect request %s", response.c_str());
104 std::vector<std::string> connect_info;
105 while ((start = response.find_first_not_of(
',', end)) != std::string::npos) {
106 end = response.find(
',', start);
107 connect_info.push_back(response.substr(start, end - start));
112 ESP_LOGN(TAG,
"Received connect_info %zu", connect_info.size());
119 ESP_LOGE(TAG,
"Nextion returned bad connect value \"%s\"", response.c_str());
138 ESP_LOGCONFIG(TAG,
"Nextion:");
142 ESP_LOGCONFIG(TAG,
" Device Model: %s", this->
device_model_.c_str());
144 ESP_LOGCONFIG(TAG,
" Serial Number: %s", this->
serial_number_.c_str());
145 ESP_LOGCONFIG(TAG,
" Flash Size: %s", this->
flash_size_.c_str());
155 ESP_LOGCONFIG(TAG,
" Wake Up Page: %" PRId16, this->
wake_up_page_);
159 ESP_LOGCONFIG(TAG,
" Start Up Page: %" PRId16, this->
start_up_page_);
202 binarysensortype->update_component();
205 sensortype->update_component();
208 switchtype->update_component();
211 textsensortype->update_component();
232 va_start(arg, format);
233 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
236 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
247 #ifdef NEXTION_PROTOCOL_LOG 249 ESP_LOGN(TAG,
"print_queue_members_ (top 10) size %zu", this->
nextion_queue_.size());
250 ESP_LOGN(TAG,
"*******************************************");
257 ESP_LOGN(TAG,
"Nextion queue is null");
259 ESP_LOGN(TAG,
"Nextion queue type: %d:%s , name: %s", i->component->get_queue_type(),
260 i->component->get_queue_type_string().c_str(), i->component->get_variable_name().c_str());
263 ESP_LOGN(TAG,
"*******************************************");
306 ESP_LOGD(TAG,
"Manually set nextion report ready");
315 ESP_LOGE(TAG,
"Nextion queue is empty!");
323 ESP_LOGN(TAG,
"Removing %s from the queue", component->
get_variable_name().c_str());
350 size_t to_process_length = 0;
351 std::string to_process;
354 #ifdef NEXTION_PROTOCOL_LOG 357 while ((to_process_length = this->
command_data_.find(COMMAND_DELIMITER)) != std::string::npos) {
358 ESP_LOGN(TAG,
"print_queue_members_ size %zu", this->
nextion_queue_.size());
359 while (to_process_length + COMMAND_DELIMITER.length() < this->
command_data_.length() &&
360 static_cast<uint8_t
>(this->
command_data_[to_process_length + COMMAND_DELIMITER.length()]) == 0xFF) {
362 ESP_LOGN(TAG,
"Add extra 0xFF to process");
367 to_process_length -= 1;
368 to_process = this->
command_data_.substr(1, to_process_length);
372 ESP_LOGW(TAG,
"Nextion reported invalid instruction!");
378 ESP_LOGVV(TAG,
"instruction sent by user was successful");
379 ESP_LOGN(TAG,
"this->nextion_queue_.empty() %s", this->
nextion_queue_.empty() ?
"True" :
"False");
384 ESP_LOGD(TAG,
"Nextion is setup");
392 ESP_LOGW(TAG,
"Nextion reported component ID or name invalid!");
396 ESP_LOGW(TAG,
"Nextion reported page ID invalid!");
400 ESP_LOGW(TAG,
"Nextion reported picture ID invalid!");
404 ESP_LOGW(TAG,
"Nextion reported font ID invalid!");
408 ESP_LOGW(TAG,
"Nextion File operation fail!");
411 ESP_LOGW(TAG,
"Nextion Instructions with CRC validation fails their CRC check!");
414 ESP_LOGW(TAG,
"Nextion reported baud rate invalid!");
419 "Nextion reported invalid Waveform ID or Channel # was used but no waveform sensor in queue found!");
424 ESP_LOGW(TAG,
"Nextion reported invalid Waveform ID %d or Channel # %d was used!",
427 ESP_LOGN(TAG,
"Removing waveform from queue with component id %d and waveform id %d",
435 ESP_LOGW(TAG,
"Nextion reported variable name invalid!");
439 ESP_LOGW(TAG,
"Nextion reported variable operation invalid!");
443 ESP_LOGW(TAG,
"Nextion reported failed to assign variable!");
447 ESP_LOGW(TAG,
"Nextion reported operating EEPROM failed!");
450 ESP_LOGW(TAG,
"Nextion reported parameter quantity invalid!");
454 ESP_LOGW(TAG,
"Nextion reported component I/O operation invalid!");
457 ESP_LOGW(TAG,
"Nextion reported undefined escape characters!");
461 ESP_LOGW(TAG,
"Nextion reported too long variable name!");
466 ESP_LOGE(TAG,
"Nextion reported Serial Buffer overflow!");
470 if (to_process_length != 3) {
471 ESP_LOGW(TAG,
"Touch event data is expecting 3, received %zu", to_process_length);
475 uint8_t page_id = to_process[0];
476 uint8_t component_id = to_process[1];
477 uint8_t touch_event = to_process[2];
478 ESP_LOGD(TAG,
"Got touch event:");
479 ESP_LOGD(TAG,
" page_id: %u", page_id);
480 ESP_LOGD(TAG,
" component_id: %u", component_id);
481 ESP_LOGD(TAG,
" event type: %s", touch_event ?
"PRESS" :
"RELEASE");
482 for (
auto *touch : this->
touch_) {
483 touch->process_touch(page_id, component_id, touch_event != 0);
490 if (to_process_length != 1) {
491 ESP_LOGW(TAG,
"New page event data is expecting 1, received %zu", to_process_length);
495 uint8_t page_id = to_process[0];
496 ESP_LOGD(TAG,
"Got new page: %u", page_id);
505 if (to_process_length != 5) {
506 ESP_LOGW(TAG,
"Touch coordinate data is expecting 5, received %zu", to_process_length);
507 ESP_LOGW(TAG,
"%s", to_process.c_str());
511 uint16_t
x = (uint16_t(to_process[0]) << 8) | to_process[1];
512 uint16_t
y = (uint16_t(to_process[2]) << 8) | to_process[3];
513 uint8_t touch_event = to_process[4];
514 ESP_LOGD(TAG,
"Got touch event:");
515 ESP_LOGD(TAG,
" x: %u", x);
516 ESP_LOGD(TAG,
" y: %u", y);
517 ESP_LOGD(TAG,
" type: %s", touch_event ?
"PRESS" :
"RELEASE");
528 ESP_LOGW(TAG,
"ERROR: Received string return but the queue is empty");
536 ESP_LOGE(TAG,
"ERROR: Received string return but next in queue \"%s\" is not a text sensor",
539 ESP_LOGN(TAG,
"Received get_string response: \"%s\" for component id: %s, type: %s", to_process.c_str(),
557 ESP_LOGE(TAG,
"ERROR: Received numeric return but the queue is empty");
561 if (to_process_length == 0) {
562 ESP_LOGE(TAG,
"ERROR: Received numeric return but no data!");
568 for (
int i = 0; i < 4; ++i) {
569 value += to_process[i] << (8 * i);
578 ESP_LOGE(TAG,
"ERROR: Received numeric return but next in queue \"%s\" is not a valid sensor type %d",
581 ESP_LOGN(TAG,
"Received numeric return for variable %s, queue type %d:%s, value %d",
594 ESP_LOGVV(TAG,
"Received Nextion entering sleep automatically");
601 ESP_LOGVV(TAG,
"Received Nextion leaves sleep automatically");
609 ESP_LOGD(TAG,
"system successful start up %zu", to_process_length);
623 std::string variable_name;
626 auto index = to_process.find(
'\0');
627 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
628 ESP_LOGE(TAG,
"Bad switch component data received for 0x90 event!");
629 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
633 variable_name = to_process.substr(0, index);
636 ESP_LOGN(TAG,
"Got Switch:");
637 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
638 ESP_LOGN(TAG,
" value: %d", to_process[0] != 0);
641 switchtype->process_bool(variable_name, to_process[index] != 0);
652 std::string variable_name;
654 auto index = to_process.find(
'\0');
655 if (index == std::string::npos || (to_process_length - index - 1) != 4) {
656 ESP_LOGE(TAG,
"Bad sensor component data received for 0x91 event!");
657 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
661 index = to_process.find(
'\0');
662 variable_name = to_process.substr(0, index);
665 for (
int i = 0; i < 4; ++i) {
666 value += to_process[i + index + 1] << (8 * i);
669 ESP_LOGN(TAG,
"Got sensor:");
670 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
671 ESP_LOGN(TAG,
" value: %d", value);
674 sensor->process_sensor(variable_name, value);
687 std::string variable_name;
688 std::string text_value;
691 auto index = to_process.find(
'\0');
692 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
693 ESP_LOGE(TAG,
"Bad text sensor component data received for 0x92 event!");
694 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
698 variable_name = to_process.substr(0, index);
701 text_value = to_process.substr(index);
703 ESP_LOGN(TAG,
"Got Text Sensor:");
704 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
705 ESP_LOGN(TAG,
" value: %s", text_value.c_str());
712 textsensortype->process_text(variable_name, text_value);
723 std::string variable_name;
726 auto index = to_process.find(
'\0');
727 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
728 ESP_LOGE(TAG,
"Bad binary sensor component data received for 0x92 event!");
729 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
733 variable_name = to_process.substr(0, index);
736 ESP_LOGN(TAG,
"Got Binary Sensor:");
737 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
738 ESP_LOGN(TAG,
" value: %d", to_process[index] != 0);
741 binarysensortype->process_bool(&variable_name[0], to_process[index] != 0);
746 ESP_LOGVV(TAG,
"Nextion reported data transmit finished!");
751 ESP_LOGVV(TAG,
"Nextion reported ready for transmit!");
753 ESP_LOGE(TAG,
"No waveforms in queue to send data!");
758 auto *component = nb->component;
759 size_t buffer_to_send = component->get_wave_buffer_size() < 255 ? component->get_wave_buffer_size()
762 this->
write_array(component->get_wave_buffer().data(),
static_cast<int>(buffer_to_send));
764 ESP_LOGN(TAG,
"Nextion sending waveform data for component id %d and waveform id %d, size %zu",
765 component->get_component_id(), component->get_wave_channel_id(), buffer_to_send);
767 component->clear_wave_buffer(buffer_to_send);
773 ESP_LOGW(TAG,
"Received unknown event from nextion: 0x%02X", this->
nextion_event_);
778 this->
command_data_.erase(0, to_process_length + COMMAND_DELIMITER.length() + 1);
790 ESP_LOGD(TAG,
"Removing old queue type \"%s\" name \"%s\" queue_time 0",
798 ESP_LOGD(TAG,
"Removing old queue type \"%s\" name \"%s\"", component->
get_queue_type_string().c_str(),
818 ESP_LOGN(TAG,
"Loop End");
828 ESP_LOGN(TAG,
"Received state:");
829 ESP_LOGN(TAG,
" variable: %s", name.c_str());
830 ESP_LOGN(TAG,
" state: %lf", state);
831 ESP_LOGN(TAG,
" queue type: %d", queue_type);
833 switch (queue_type) {
836 if (name ==
sensor->get_variable_name()) {
837 sensor->set_state(state,
true,
true);
845 if (name ==
sensor->get_variable_name()) {
846 sensor->set_state(state != 0,
true,
true);
854 if (name ==
sensor->get_variable_name()) {
855 sensor->set_state(state != 0,
true,
true);
862 ESP_LOGW(TAG,
"set_nextion_sensor_state does not support a queue type %d", queue_type);
868 ESP_LOGD(TAG,
"Received state:");
869 ESP_LOGD(TAG,
" variable: %s", name.c_str());
870 ESP_LOGD(TAG,
" state: %s", state.c_str());
873 if (name ==
sensor->get_variable_name()) {
874 sensor->set_state(state,
true,
true);
881 ESP_LOGD(TAG,
"all_components_send_state_ ");
883 if (force_update || binarysensortype->get_needs_to_send_update())
884 binarysensortype->send_state_to_nextion();
887 if ((force_update || sensortype->get_needs_to_send_update()) && sensortype->get_wave_chan_id() == 0)
888 sensortype->send_state_to_nextion();
891 if (force_update || switchtype->get_needs_to_send_update())
892 switchtype->send_state_to_nextion();
895 if (force_update || textsensortype->get_needs_to_send_update())
896 textsensortype->send_state_to_nextion();
902 if (binarysensortype->get_variable_name().find(prefix, 0) != std::string::npos)
903 binarysensortype->update_component_settings(
true);
906 if (sensortype->get_variable_name().find(prefix, 0) != std::string::npos)
907 sensortype->update_component_settings(
true);
910 if (switchtype->get_variable_name().find(prefix, 0) != std::string::npos)
911 switchtype->update_component_settings(
true);
914 if (textsensortype->get_variable_name().find(prefix, 0) != std::string::npos)
915 textsensortype->update_component_settings(
true);
922 uint8_t nr_of_ff_bytes = 0;
924 bool exit_flag =
false;
925 bool ff_flag =
false;
929 while ((timeout == 0 && this->
available()) ||
millis() - start <= timeout) {
944 if (nr_of_ff_bytes >= 3)
947 response += (char) c;
949 if (response.find(0x05) != std::string::npos) {
956 if (exit_flag || ff_flag) {
962 response = response.substr(0, response.length() - 3);
964 ret = response.length();
1010 va_start(arg, format);
1011 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
1014 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
1035 va_start(arg, format);
1036 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
1039 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
1062 const std::string &variable_name_to_send, int32_t state_value) {
1067 const std::string &variable_name_to_send, int32_t state_value,
1068 bool is_sleep_safe) {
1089 const std::string &variable_name_to_send,
1090 const std::string &state_value) {
1095 const std::string &variable_name_to_send,
1096 const std::string &state_value,
bool is_sleep_safe) {
1101 state_value.c_str());
1152 auto *component = nb->component;
1153 size_t buffer_to_send = component->get_wave_buffer_size() < 255 ? component->get_wave_buffer_size()
1156 std::string command =
"addt " +
to_string(component->get_component_id()) +
"," +
1166 ESPDEPRECATED(
"set_wait_for_ack(bool) is deprecated and has no effect",
"v1.20")
void goto_page(const char *page)
Show the page with a given name.
bool ignore_is_setup_
Sends commands ignoring of the Nextion has been setup.
const uint16_t startup_override_ms_
void write_str(const char *str)
void all_components_send_state_(bool force_update=false)
CallbackManager< void(uint8_t)> page_callback_
CallbackManager< void()> sleep_callback_
const float DATA
For components that import data from directly connected sensors like DHT.
void add_new_page_callback(std::function< void(uint8_t)> &&callback)
Add a callback to be notified when the nextion changes pages.
void write_array(const uint8_t *data, size_t len)
void add_wake_state_callback(std::function< void()> &&callback)
Add a callback to be notified of wake state changes.
uint8_t get_wave_channel_id()
bool send_command(const char *command)
Manually send a raw command to the display.
bool send_command_printf(const char *format,...) __attribute__((format(printf
Manually send a raw formatted command to the display.
void add_addt_command_to_queue(NextionComponentBase *component) override
Add addt command to the queue.
bool is_updating() override
Check if the TFT update process is currently running.
bool exit_reparse_on_start_
void add_to_get_queue(NextionComponentBase *component) override
std::vector< NextionComponentBase * > touch_
optional< nextion_writer_t > writer_
void update_all_components()
void add_setup_state_callback(std::function< void()> &&callback)
Add a callback to be notified when the nextion completes its initialize setup.
bool sent_setup_commands_
CallbackManager< void()> buffer_overflow_callback_
const uint16_t max_q_age_ms_
bool send_command_(const std::string &command)
Manually send a raw command to the display and don't wait for an acknowledgement packet.
float get_setup_priority() const override
std::string serial_number_
CallbackManager< void(uint8_t, uint8_t, bool)> touch_callback_
void add_buffer_overflow_event_callback(std::function< void()> &&callback)
Add a callback to be notified when the nextion reports a buffer overflow.
uint32_t IRAM_ATTR HOT millis()
virtual std::string get_queue_type_string()
void set_exit_reparse_on_start(bool exit_reparse)
Sets if Nextion should exit the active reparse mode before the "connect" command is sent...
bool nextion_reports_is_setup_
bool add_no_result_to_queue_with_printf_(const std::string &variable_name, const char *format,...) __attribute__((format(printf
Sends a formatted command to the nextion.
void add_sleep_state_callback(std::function< void()> &&callback)
Add a callback to be notified of sleep state changes.
std::string get_variable_name()
virtual void set_state_from_string(const std::string &state_value, bool publish, bool send_to_nextion)
void set_nextion_sensor_state(int queue_type, const std::string &name, float state)
Set the nextion sensor state object.
CallbackManager< void()> setup_callback_
bool read_byte(uint8_t *data)
void set_nextion_text_state(const std::string &name, const std::string &state)
void set_wait_for_ack(bool wait_for_ack)
std::deque< NextionQueue * > nextion_queue_
CallbackManager< void()> wake_callback_
void print_queue_members_()
std::string get_variable_name_to_send()
Application App
Global storage of Application pointer - only one Application can exist.
void add_no_result_to_queue_(const std::string &variable_name)
std::deque< NextionQueue * > waveform_queue_
std::string command_data_
bool remove_from_q_(bool report_empty=true)
void set_backlight_brightness(float brightness)
Set the brightness of the backlight.
std::string device_model_
bool void add_no_result_to_queue_with_set_internal_(const std::string &variable_name, const std::string &variable_name_to_send, int32_t state_value, bool is_sleep_safe=false)
bool add_no_result_to_queue_with_ignore_sleep_printf_(const std::string &variable_name, const char *format,...) __attribute__((format(printf
void set_touch_sleep_timeout(uint16_t timeout)
Set the touch sleep timeout of the display.
std::vector< NextionComponentBase * > textsensortype_
ESPDEPRECATED("set_wait_for_ack(bool) is deprecated and has no effect", "v1.20") void Nextion
void add_touch_event_callback(std::function< void(uint8_t, uint8_t, bool)> &&callback)
Add a callback to be notified when Nextion has a touch event.
void set_wake_up_page(uint8_t page_id=255)
Sets which page Nextion loads when exiting sleep mode.
uint8_t get_component_id()
std::vector< NextionComponentBase * > sensortype_
void dump_config() override
std::string to_string(int value)
void process_nextion_commands_()
std::vector< NextionComponentBase * > switchtype_
virtual NextionQueueType get_queue_type()
void set_auto_wake_on_touch(bool auto_wake)
Sets if Nextion should auto-wake from sleep when touch press occurs.
virtual void set_state_from_int(int state_value, bool publish, bool send_to_nextion)
NextionComponentBase * component
Implementation of SPI Controller mode.
bool skip_connection_handshake_
bool void add_no_result_to_queue_with_command_(const std::string &variable_name, const std::string &command)
void reset_(bool reset_nextion=true)
void update_components_by_prefix(const std::string &prefix)
std::string firmware_version_
void set_variable_name(const std::string &variable_name, const std::string &variable_name_to_send="")
uint32_t touch_sleep_timeout_
esphome::sensor::Sensor * sensor
void check_pending_waveform_()
uint16_t recv_ret_string_(std::string &response, uint32_t timeout, bool recv_flag)
void add_no_result_to_queue_with_set(NextionComponentBase *component, int32_t state_value) override
std::function< void(Nextion &)> nextion_writer_t
std::vector< NextionComponentBase * > binarysensortype_
void set_writer(const nextion_writer_t &writer)
void IRAM_ATTR HOT delay(uint32_t ms)