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,
"*******************************************");
300 ESP_LOGD(TAG,
"Manually set nextion report ready");
309 ESP_LOGE(TAG,
"Nextion queue is empty!");
317 ESP_LOGN(TAG,
"Removing %s from the queue", component->
get_variable_name().c_str());
344 size_t to_process_length = 0;
345 std::string to_process;
348 #ifdef NEXTION_PROTOCOL_LOG 351 while ((to_process_length = this->
command_data_.find(COMMAND_DELIMITER)) != std::string::npos) {
352 ESP_LOGN(TAG,
"print_queue_members_ size %zu", this->
nextion_queue_.size());
353 while (to_process_length + COMMAND_DELIMITER.length() < this->
command_data_.length() &&
354 static_cast<uint8_t
>(this->
command_data_[to_process_length + COMMAND_DELIMITER.length()]) == 0xFF) {
356 ESP_LOGN(TAG,
"Add extra 0xFF to process");
361 to_process_length -= 1;
362 to_process = this->
command_data_.substr(1, to_process_length);
366 ESP_LOGW(TAG,
"Nextion reported invalid instruction!");
372 ESP_LOGVV(TAG,
"instruction sent by user was successful");
373 ESP_LOGN(TAG,
"this->nextion_queue_.empty() %s", this->
nextion_queue_.empty() ?
"True" :
"False");
378 ESP_LOGD(TAG,
"Nextion is setup");
386 ESP_LOGW(TAG,
"Nextion reported component ID or name invalid!");
390 ESP_LOGW(TAG,
"Nextion reported page ID invalid!");
394 ESP_LOGW(TAG,
"Nextion reported picture ID invalid!");
398 ESP_LOGW(TAG,
"Nextion reported font ID invalid!");
402 ESP_LOGW(TAG,
"Nextion File operation fail!");
405 ESP_LOGW(TAG,
"Nextion Instructions with CRC validation fails their CRC check!");
408 ESP_LOGW(TAG,
"Nextion reported baud rate invalid!");
413 "Nextion reported invalid Waveform ID or Channel # was used but no waveform sensor in queue found!");
418 ESP_LOGW(TAG,
"Nextion reported invalid Waveform ID %d or Channel # %d was used!",
421 ESP_LOGN(TAG,
"Removing waveform from queue with component id %d and waveform id %d",
429 ESP_LOGW(TAG,
"Nextion reported variable name invalid!");
433 ESP_LOGW(TAG,
"Nextion reported variable operation invalid!");
437 ESP_LOGW(TAG,
"Nextion reported failed to assign variable!");
441 ESP_LOGW(TAG,
"Nextion reported operating EEPROM failed!");
444 ESP_LOGW(TAG,
"Nextion reported parameter quantity invalid!");
448 ESP_LOGW(TAG,
"Nextion reported component I/O operation invalid!");
451 ESP_LOGW(TAG,
"Nextion reported undefined escape characters!");
455 ESP_LOGW(TAG,
"Nextion reported too long variable name!");
460 ESP_LOGE(TAG,
"Nextion reported Serial Buffer overflow!");
464 if (to_process_length != 3) {
465 ESP_LOGW(TAG,
"Touch event data is expecting 3, received %zu", to_process_length);
469 uint8_t page_id = to_process[0];
470 uint8_t component_id = to_process[1];
471 uint8_t touch_event = to_process[2];
472 ESP_LOGD(TAG,
"Got touch event:");
473 ESP_LOGD(TAG,
" page_id: %u", page_id);
474 ESP_LOGD(TAG,
" component_id: %u", component_id);
475 ESP_LOGD(TAG,
" event type: %s", touch_event ?
"PRESS" :
"RELEASE");
476 for (
auto *touch : this->
touch_) {
477 touch->process_touch(page_id, component_id, touch_event != 0);
484 if (to_process_length != 1) {
485 ESP_LOGW(TAG,
"New page event data is expecting 1, received %zu", to_process_length);
489 uint8_t page_id = to_process[0];
490 ESP_LOGD(TAG,
"Got new page: %u", page_id);
499 if (to_process_length != 5) {
500 ESP_LOGW(TAG,
"Touch coordinate data is expecting 5, received %zu", to_process_length);
501 ESP_LOGW(TAG,
"%s", to_process.c_str());
505 uint16_t
x = (uint16_t(to_process[0]) << 8) | to_process[1];
506 uint16_t
y = (uint16_t(to_process[2]) << 8) | to_process[3];
507 uint8_t touch_event = to_process[4];
508 ESP_LOGD(TAG,
"Got touch event:");
509 ESP_LOGD(TAG,
" x: %u", x);
510 ESP_LOGD(TAG,
" y: %u", y);
511 ESP_LOGD(TAG,
" type: %s", touch_event ?
"PRESS" :
"RELEASE");
522 ESP_LOGW(TAG,
"ERROR: Received string return but the queue is empty");
530 ESP_LOGE(TAG,
"ERROR: Received string return but next in queue \"%s\" is not a text sensor",
533 ESP_LOGN(TAG,
"Received get_string response: \"%s\" for component id: %s, type: %s", to_process.c_str(),
551 ESP_LOGE(TAG,
"ERROR: Received numeric return but the queue is empty");
555 if (to_process_length == 0) {
556 ESP_LOGE(TAG,
"ERROR: Received numeric return but no data!");
562 for (
int i = 0; i < 4; ++i) {
563 value += to_process[i] << (8 * i);
572 ESP_LOGE(TAG,
"ERROR: Received numeric return but next in queue \"%s\" is not a valid sensor type %d",
575 ESP_LOGN(TAG,
"Received numeric return for variable %s, queue type %d:%s, value %d",
588 ESP_LOGVV(TAG,
"Received Nextion entering sleep automatically");
595 ESP_LOGVV(TAG,
"Received Nextion leaves sleep automatically");
603 ESP_LOGD(TAG,
"system successful start up %zu", to_process_length);
617 std::string variable_name;
620 auto index = to_process.find(
'\0');
621 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
622 ESP_LOGE(TAG,
"Bad switch component data received for 0x90 event!");
623 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
627 variable_name = to_process.substr(0, index);
630 ESP_LOGN(TAG,
"Got Switch:");
631 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
632 ESP_LOGN(TAG,
" value: %d", to_process[0] != 0);
635 switchtype->process_bool(variable_name, to_process[index] != 0);
646 std::string variable_name;
648 auto index = to_process.find(
'\0');
649 if (index == std::string::npos || (to_process_length - index - 1) != 4) {
650 ESP_LOGE(TAG,
"Bad sensor component data received for 0x91 event!");
651 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
655 index = to_process.find(
'\0');
656 variable_name = to_process.substr(0, index);
659 for (
int i = 0; i < 4; ++i) {
660 value += to_process[i + index + 1] << (8 * i);
663 ESP_LOGN(TAG,
"Got sensor:");
664 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
665 ESP_LOGN(TAG,
" value: %d", value);
668 sensor->process_sensor(variable_name, value);
681 std::string variable_name;
682 std::string text_value;
685 auto index = to_process.find(
'\0');
686 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
687 ESP_LOGE(TAG,
"Bad text sensor component data received for 0x92 event!");
688 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
692 variable_name = to_process.substr(0, index);
695 text_value = to_process.substr(index);
697 ESP_LOGN(TAG,
"Got Text Sensor:");
698 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
699 ESP_LOGN(TAG,
" value: %s", text_value.c_str());
706 textsensortype->process_text(variable_name, text_value);
717 std::string variable_name;
720 auto index = to_process.find(
'\0');
721 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
722 ESP_LOGE(TAG,
"Bad binary sensor component data received for 0x92 event!");
723 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
727 variable_name = to_process.substr(0, index);
730 ESP_LOGN(TAG,
"Got Binary Sensor:");
731 ESP_LOGN(TAG,
" variable_name: %s", variable_name.c_str());
732 ESP_LOGN(TAG,
" value: %d", to_process[index] != 0);
735 binarysensortype->process_bool(&variable_name[0], to_process[index] != 0);
740 ESP_LOGVV(TAG,
"Nextion reported data transmit finished!");
745 ESP_LOGVV(TAG,
"Nextion reported ready for transmit!");
747 ESP_LOGE(TAG,
"No waveforms in queue to send data!");
752 auto *component = nb->component;
753 size_t buffer_to_send = component->get_wave_buffer_size() < 255 ? component->get_wave_buffer_size()
756 this->
write_array(component->get_wave_buffer().data(),
static_cast<int>(buffer_to_send));
758 ESP_LOGN(TAG,
"Nextion sending waveform data for component id %d and waveform id %d, size %zu",
759 component->get_component_id(), component->get_wave_channel_id(), buffer_to_send);
761 component->clear_wave_buffer(buffer_to_send);
767 ESP_LOGW(TAG,
"Received unknown event from nextion: 0x%02X", this->
nextion_event_);
772 this->
command_data_.erase(0, to_process_length + COMMAND_DELIMITER.length() + 1);
784 ESP_LOGD(TAG,
"Removing old queue type \"%s\" name \"%s\" queue_time 0",
792 ESP_LOGD(TAG,
"Removing old queue type \"%s\" name \"%s\"", component->
get_queue_type_string().c_str(),
812 ESP_LOGN(TAG,
"Loop End");
822 ESP_LOGN(TAG,
"Received state:");
823 ESP_LOGN(TAG,
" variable: %s", name.c_str());
824 ESP_LOGN(TAG,
" state: %lf", state);
825 ESP_LOGN(TAG,
" queue type: %d", queue_type);
827 switch (queue_type) {
830 if (name ==
sensor->get_variable_name()) {
831 sensor->set_state(state,
true,
true);
839 if (name ==
sensor->get_variable_name()) {
840 sensor->set_state(state != 0,
true,
true);
848 if (name ==
sensor->get_variable_name()) {
849 sensor->set_state(state != 0,
true,
true);
856 ESP_LOGW(TAG,
"set_nextion_sensor_state does not support a queue type %d", queue_type);
862 ESP_LOGD(TAG,
"Received state:");
863 ESP_LOGD(TAG,
" variable: %s", name.c_str());
864 ESP_LOGD(TAG,
" state: %s", state.c_str());
867 if (name ==
sensor->get_variable_name()) {
868 sensor->set_state(state,
true,
true);
875 ESP_LOGD(TAG,
"all_components_send_state_ ");
877 if (force_update || binarysensortype->get_needs_to_send_update())
878 binarysensortype->send_state_to_nextion();
881 if ((force_update || sensortype->get_needs_to_send_update()) && sensortype->get_wave_chan_id() == 0)
882 sensortype->send_state_to_nextion();
885 if (force_update || switchtype->get_needs_to_send_update())
886 switchtype->send_state_to_nextion();
889 if (force_update || textsensortype->get_needs_to_send_update())
890 textsensortype->send_state_to_nextion();
896 if (binarysensortype->get_variable_name().find(prefix, 0) != std::string::npos)
897 binarysensortype->update_component_settings(
true);
900 if (sensortype->get_variable_name().find(prefix, 0) != std::string::npos)
901 sensortype->update_component_settings(
true);
904 if (switchtype->get_variable_name().find(prefix, 0) != std::string::npos)
905 switchtype->update_component_settings(
true);
908 if (textsensortype->get_variable_name().find(prefix, 0) != std::string::npos)
909 textsensortype->update_component_settings(
true);
916 uint8_t nr_of_ff_bytes = 0;
918 bool exit_flag =
false;
919 bool ff_flag =
false;
923 while ((timeout == 0 && this->
available()) ||
millis() - start <= timeout) {
938 if (nr_of_ff_bytes >= 3)
941 response += (char) c;
943 if (response.find(0x05) != std::string::npos) {
950 if (exit_flag || ff_flag) {
956 response = response.substr(0, response.length() - 3);
958 ret = response.length();
1004 va_start(arg, format);
1005 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
1008 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
1029 va_start(arg, format);
1030 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
1033 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
1056 const std::string &variable_name_to_send, int32_t state_value) {
1061 const std::string &variable_name_to_send, int32_t state_value,
1062 bool is_sleep_safe) {
1083 const std::string &variable_name_to_send,
1084 const std::string &state_value) {
1089 const std::string &variable_name_to_send,
1090 const std::string &state_value,
bool is_sleep_safe) {
1095 state_value.c_str());
1146 auto *component = nb->component;
1147 size_t buffer_to_send = component->get_wave_buffer_size() < 255 ? component->get_wave_buffer_size()
1150 std::string command =
"addt " +
to_string(component->get_component_id()) +
"," +
1160 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.
value_type const & value() const
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()
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_wake_up_page(uint8_t wake_up_page=255)
Sets which page Nextion loads when exiting sleep mode.
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
optional< float > brightness_
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.
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()
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)