9 static const char *
const TAG =
"nextion";
33 ESP_LOGN(TAG,
"send_command %s", command.c_str());
36 const uint8_t to_send[3] = {0xFF, 0xFF, 0xFF};
64 if (!response.empty() && response[0] == 0x1A) {
66 ESP_LOGD(TAG,
"0x1A error ignored during setup");
69 if (response.empty() || response.find(
"comok") == std::string::npos) {
70 #ifdef NEXTION_PROTOCOL_LOG 71 ESP_LOGN(TAG,
"Bad connect request %s", response.c_str());
72 for (
size_t i = 0; i < response.length(); i++) {
73 ESP_LOGN(TAG,
"response %s %d %d %c", response.c_str(), i, response[i], response[i]);
77 ESP_LOGW(TAG,
"Nextion is not connected! ");
83 ESP_LOGI(TAG,
"Nextion is connected");
86 ESP_LOGN(TAG,
"connect request %s", response.c_str());
90 std::vector<std::string> connect_info;
91 while ((start = response.find_first_not_of(
',', end)) != std::string::npos) {
92 end = response.find(
',', start);
93 connect_info.push_back(response.substr(start, end - start));
96 if (connect_info.size() == 7) {
97 ESP_LOGN(TAG,
"Received connect_info %zu", connect_info.size());
104 ESP_LOGE(TAG,
"Nextion returned bad connect value \"%s\"", response.c_str());
123 ESP_LOGCONFIG(TAG,
"Nextion:");
124 ESP_LOGCONFIG(TAG,
" Device Model: %s", this->
device_model_.c_str());
126 ESP_LOGCONFIG(TAG,
" Serial Number: %s", this->
serial_number_.c_str());
127 ESP_LOGCONFIG(TAG,
" Flash Size: %s", this->
flash_size_.c_str());
135 ESP_LOGCONFIG(TAG,
" Wake Up Page : %d", this->
wake_up_page_);
174 binarysensortype->update_component();
177 sensortype->update_component();
180 switchtype->update_component();
183 textsensortype->update_component();
193 va_start(arg, format);
194 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
197 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
208 #ifdef NEXTION_PROTOCOL_LOG 210 ESP_LOGN(TAG,
"print_queue_members_ (top 10) size %zu", this->
nextion_queue_.size());
211 ESP_LOGN(TAG,
"*******************************************");
218 ESP_LOGN(TAG,
"Nextion queue is null");
220 ESP_LOGN(TAG,
"Nextion queue type: %d:%s , name: %s", i->component->get_queue_type(),
221 i->component->get_queue_type_string().c_str(), i->component->get_variable_name().c_str());
224 ESP_LOGN(TAG,
"*******************************************");
265 ESP_LOGD(TAG,
"Manually set nextion report ready");
274 ESP_LOGE(TAG,
"Nextion queue is empty!");
282 ESP_LOGN(TAG,
"Removing %s from the queue", component->
get_variable_name().c_str());
309 size_t to_process_length = 0;
310 std::string to_process;
313 #ifdef NEXTION_PROTOCOL_LOG 316 while ((to_process_length = this->
command_data_.find(COMMAND_DELIMITER)) != std::string::npos) {
317 ESP_LOGN(TAG,
"print_queue_members_ size %zu", this->
nextion_queue_.size());
318 while (to_process_length + COMMAND_DELIMITER.length() < this->
command_data_.length() &&
319 static_cast<uint8_t
>(this->
command_data_[to_process_length + COMMAND_DELIMITER.length()]) == 0xFF) {
321 ESP_LOGN(TAG,
"Add extra 0xFF to process");
326 to_process_length -= 1;
327 to_process = this->
command_data_.substr(1, to_process_length);
331 ESP_LOGW(TAG,
"Nextion reported invalid instruction!");
337 ESP_LOGVV(TAG,
"instruction sent by user was successful");
338 ESP_LOGN(TAG,
"this->nextion_queue_.empty() %s", this->
nextion_queue_.empty() ?
"True" :
"False");
343 ESP_LOGD(TAG,
"Nextion is setup");
351 ESP_LOGW(TAG,
"Nextion reported component ID or name invalid!");
355 ESP_LOGW(TAG,
"Nextion reported page ID invalid!");
359 ESP_LOGW(TAG,
"Nextion reported picture ID invalid!");
363 ESP_LOGW(TAG,
"Nextion reported font ID invalid!");
367 ESP_LOGW(TAG,
"Nextion File operation fail!");
370 ESP_LOGW(TAG,
"Nextion Instructions with CRC validation fails their CRC check!");
373 ESP_LOGW(TAG,
"Nextion reported baud rate invalid!");
378 "Nextion reported invalid Waveform ID or Channel # was used but no waveform sensor in queue found!");
383 ESP_LOGW(TAG,
"Nextion reported invalid Waveform ID %d or Channel # %d was used!",
386 ESP_LOGN(TAG,
"Removing waveform from queue with component id %d and waveform id %d",
394 ESP_LOGW(TAG,
"Nextion reported variable name invalid!");
398 ESP_LOGW(TAG,
"Nextion reported variable operation invalid!");
402 ESP_LOGW(TAG,
"Nextion reported failed to assign variable!");
406 ESP_LOGW(TAG,
"Nextion reported operating EEPROM failed!");
409 ESP_LOGW(TAG,
"Nextion reported parameter quantity invalid!");
413 ESP_LOGW(TAG,
"Nextion reported component I/O operation invalid!");
416 ESP_LOGW(TAG,
"Nextion reported undefined escape characters!");
420 ESP_LOGW(TAG,
"Nextion reported too long variable name!");
424 ESP_LOGW(TAG,
"Nextion reported Serial Buffer overflow!");
427 if (to_process_length != 3) {
428 ESP_LOGW(TAG,
"Touch event data is expecting 3, received %zu", to_process_length);
432 uint8_t page_id = to_process[0];
433 uint8_t component_id = to_process[1];
434 uint8_t touch_event = to_process[2];
435 ESP_LOGD(TAG,
"Got touch page=%u component=%u type=%s", page_id, component_id,
436 touch_event ?
"PRESS" :
"RELEASE");
437 for (
auto *touch : this->
touch_) {
438 touch->process_touch(page_id, component_id, touch_event != 0);
444 if (to_process_length != 1) {
445 ESP_LOGW(TAG,
"New page event data is expecting 1, received %zu", to_process_length);
449 uint8_t page_id = to_process[0];
450 ESP_LOGD(TAG,
"Got new page=%u", page_id);
459 if (to_process_length != 5) {
460 ESP_LOGW(TAG,
"Touch coordinate data is expecting 5, received %zu", to_process_length);
461 ESP_LOGW(TAG,
"%s", to_process.c_str());
465 uint16_t
x = (uint16_t(to_process[0]) << 8) | to_process[1];
466 uint16_t
y = (uint16_t(to_process[2]) << 8) | to_process[3];
467 uint8_t touch_event = to_process[4];
468 ESP_LOGD(TAG,
"Got touch at x=%u y=%u type=%s", x, y, touch_event ?
"PRESS" :
"RELEASE");
479 ESP_LOGW(TAG,
"ERROR: Received string return but the queue is empty");
487 ESP_LOGE(TAG,
"ERROR: Received string return but next in queue \"%s\" is not a text sensor",
490 ESP_LOGN(TAG,
"Received get_string response: \"%s\" for component id: %s, type: %s", to_process.c_str(),
508 ESP_LOGE(TAG,
"ERROR: Received numeric return but the queue is empty");
512 if (to_process_length == 0) {
513 ESP_LOGE(TAG,
"ERROR: Received numeric return but no data!");
521 for (
int i = 0; i < 4; ++i) {
522 value += to_process[i] << (8 * i);
532 ESP_LOGE(TAG,
"ERROR: Received numeric return but next in queue \"%s\" is not a valid sensor type %d",
535 ESP_LOGN(TAG,
"Received numeric return for variable %s, queue type %d:%s, value %d",
548 ESP_LOGVV(TAG,
"Received Nextion entering sleep automatically");
555 ESP_LOGVV(TAG,
"Received Nextion leaves sleep automatically");
563 ESP_LOGD(TAG,
"system successful start up %zu", to_process_length);
577 std::string variable_name;
580 auto index = to_process.find(
'\0');
581 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
582 ESP_LOGE(TAG,
"Bad switch component data received for 0x90 event!");
583 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
587 variable_name = to_process.substr(0, index);
590 ESP_LOGN(TAG,
"Got Switch variable_name=%s value=%d", variable_name.c_str(), to_process[0] != 0);
593 switchtype->process_bool(variable_name, to_process[index] != 0);
604 std::string variable_name;
606 auto index = to_process.find(
'\0');
607 if (index == std::string::npos || (to_process_length - index - 1) != 4) {
608 ESP_LOGE(TAG,
"Bad sensor component data received for 0x91 event!");
609 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
613 index = to_process.find(
'\0');
614 variable_name = to_process.substr(0, index);
617 for (
int i = 0; i < 4; ++i) {
618 value += to_process[i + index + 1] << (8 * i);
621 ESP_LOGN(TAG,
"Got sensor variable_name=%s value=%d", variable_name.c_str(), value);
624 sensor->process_sensor(variable_name, value);
637 std::string variable_name;
638 std::string text_value;
641 auto index = to_process.find(
'\0');
642 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
643 ESP_LOGE(TAG,
"Bad text sensor component data received for 0x92 event!");
644 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
648 variable_name = to_process.substr(0, index);
651 text_value = to_process.substr(index);
653 ESP_LOGN(TAG,
"Got Text Sensor variable_name=%s value=%s", variable_name.c_str(), text_value.c_str());
660 textsensortype->process_text(variable_name, text_value);
671 std::string variable_name;
674 auto index = to_process.find(
'\0');
675 if (index == std::string::npos || (to_process_length - index - 1) < 1) {
676 ESP_LOGE(TAG,
"Bad binary sensor component data received for 0x92 event!");
677 ESP_LOGN(TAG,
"to_process %s %zu %d", to_process.c_str(), to_process_length, index);
681 variable_name = to_process.substr(0, index);
684 ESP_LOGN(TAG,
"Got Binary Sensor variable_name=%s value=%d", variable_name.c_str(), to_process[index] != 0);
687 binarysensortype->process_bool(&variable_name[0], to_process[index] != 0);
692 ESP_LOGVV(TAG,
"Nextion reported data transmit finished!");
697 ESP_LOGVV(TAG,
"Nextion reported ready for transmit!");
699 ESP_LOGE(TAG,
"No waveforms in queue to send data!");
704 auto *component = nb->component;
705 size_t buffer_to_send = component->get_wave_buffer_size() < 255 ? component->get_wave_buffer_size()
708 this->
write_array(component->get_wave_buffer().data(),
static_cast<int>(buffer_to_send));
710 ESP_LOGN(TAG,
"Nextion sending waveform data for component id %d and waveform id %d, size %zu",
711 component->get_component_id(), component->get_wave_channel_id(), buffer_to_send);
713 component->clear_wave_buffer(buffer_to_send);
719 ESP_LOGW(TAG,
"Received unknown event from nextion: 0x%02X", this->
nextion_event_);
724 this->
command_data_.erase(0, to_process_length + COMMAND_DELIMITER.length() + 1);
736 ESP_LOGD(TAG,
"Removing old queue type \"%s\" name \"%s\" queue_time 0",
744 ESP_LOGD(TAG,
"Removing old queue type \"%s\" name \"%s\"", component->
get_queue_type_string().c_str(),
764 ESP_LOGN(TAG,
"Loop End");
774 ESP_LOGN(TAG,
"Received state for variable %s, state %lf for queue type %d", name.c_str(),
state, queue_type);
776 switch (queue_type) {
779 if (name == sensor->get_variable_name()) {
780 sensor->set_state(state,
true,
true);
788 if (name == sensor->get_variable_name()) {
789 sensor->set_state(state != 0,
true,
true);
797 if (name == sensor->get_variable_name()) {
798 sensor->set_state(state != 0,
true,
true);
805 ESP_LOGW(TAG,
"set_nextion_sensor_state does not support a queue type %d", queue_type);
811 ESP_LOGD(TAG,
"Received state for variable %s, state %s", name.c_str(), state.c_str());
814 if (name == sensor->get_variable_name()) {
815 sensor->set_state(state,
true,
true);
822 ESP_LOGD(TAG,
"all_components_send_state_ ");
824 if (force_update || binarysensortype->get_needs_to_send_update())
825 binarysensortype->send_state_to_nextion();
828 if ((force_update || sensortype->get_needs_to_send_update()) && sensortype->get_wave_chan_id() == 0)
829 sensortype->send_state_to_nextion();
832 if (force_update || switchtype->get_needs_to_send_update())
833 switchtype->send_state_to_nextion();
836 if (force_update || textsensortype->get_needs_to_send_update())
837 textsensortype->send_state_to_nextion();
843 if (binarysensortype->get_variable_name().find(prefix, 0) != std::string::npos)
844 binarysensortype->update_component_settings(
true);
847 if (sensortype->get_variable_name().find(prefix, 0) != std::string::npos)
848 sensortype->update_component_settings(
true);
851 if (switchtype->get_variable_name().find(prefix, 0) != std::string::npos)
852 switchtype->update_component_settings(
true);
855 if (textsensortype->get_variable_name().find(prefix, 0) != std::string::npos)
856 textsensortype->update_component_settings(
true);
863 uint8_t nr_of_ff_bytes = 0;
865 bool exit_flag =
false;
866 bool ff_flag =
false;
870 while ((timeout == 0 && this->
available()) ||
millis() - start <= timeout) {
879 if (nr_of_ff_bytes >= 3)
882 response += (char) c;
884 if (response.find(0x05) != std::string::npos) {
891 if (exit_flag || ff_flag) {
897 response = response.substr(0, response.length() - 3);
899 ret = response.length();
945 va_start(arg, format);
946 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
949 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
970 va_start(arg, format);
971 int ret = vsnprintf(buffer,
sizeof(buffer), format, arg);
974 ESP_LOGW(TAG,
"Building command for format '%s' failed!", format);
997 const std::string &variable_name_to_send,
int state_value) {
1002 const std::string &variable_name_to_send,
int state_value,
1003 bool is_sleep_safe) {
1024 const std::string &variable_name_to_send,
1025 const std::string &state_value) {
1030 const std::string &variable_name_to_send,
1031 const std::string &state_value,
bool is_sleep_safe) {
1036 state_value.c_str());
1087 auto *component = nb->component;
1088 size_t buffer_to_send = component->get_wave_buffer_size() < 255 ? component->get_wave_buffer_size()
1091 std::string command =
"addt " +
to_string(component->get_component_id()) +
"," +
1101 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.
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_printf(const char *format,...) __attribute__((format(printf
Manually send a raw formatted command to the display.
void add_no_result_to_queue_with_set(NextionComponentBase *component, int state_value) override
void add_addt_command_to_queue(NextionComponentBase *component) override
Add addt command to the queue.
uint32_t startup_override_ms_
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_
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_
bool void add_no_result_to_queue_with_set_internal_(const std::string &variable_name, const std::string &variable_name_to_send, int state_value, bool is_sleep_safe=false)
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_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 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 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 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_
void check_pending_waveform_()
uint16_t recv_ret_string_(std::string &response, uint32_t timeout, bool recv_flag)
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)