-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnspanel_esphome_api.yaml
More file actions
416 lines (379 loc) · 17.9 KB
/
nspanel_esphome_api.yaml
File metadata and controls
416 lines (379 loc) · 17.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
#####################################################################################################
##### NSPanel Easy - https://github.com/edwardtfn/NSPanel-Easy #####
#####################################################################################################
##### ESPHOME CORE - API #####
##### PLEASE only make changes if it is necessary and also the required knowledge is available. #####
##### For normal use with the Blueprint, no changes are necessary. #####
#####################################################################################################
---
substitutions:
##############################
## Change only in your ##
## local yaml substitutions ##
##############################
BOOT_STEP_API: 30
TAG_API: nspanel.api
EVENT_NAME: esphome.nspanel_easy
api:
id: api_server
homeassistant_services: true
reboot_timeout: 60min
on_client_connected:
then:
- lambda: |-
update_flag_api_ready->execute();
boot_log->execute("API", "Client connected");
// dump_config->execute();
on_client_disconnected:
then:
- script.execute: update_flag_api_ready
actions:
# Sends custom commands directly to the display for dynamic interactions and updates.
- action: command
variables:
cmd: string # Command string to be sent. Refer to the Nextion Instruction Set for supported commands: https://nextion.tech/instruction-set/
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Action: command");
ESP_LOGV("${TAG_API}", " cmd: %s", cmd.c_str());
disp1->send_command(cmd.c_str());
# Changes the foreground color of a specified component on the display.
- action: component_color
variables:
page: string # Send `mem` for a memory var
id: string # Identifier of the component to change color. Ensure this matches the component's ID in your display layout.
color: int[] # New color for the component, specified as an RGB array (e.g., [255, 0, 0] for red).
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Action: component_color");
ESP_LOGV("${TAG_API}", " page: %s", page.c_str());
ESP_LOGV("${TAG_API}", " id: %s", id.c_str());
ESP_LOGV("${TAG_API}", " color: %" PRIu16, rgbTo565(color));
if (!page.empty() && page != "mem" && page != hmi::home::PAGE.name && page != current_page->state) {
ESP_LOGV("${TAG_API}", " Only page 'home' can get a color when not visible");
return;
}
action_component_color->execute(
page.c_str(),
id.c_str(),
rgbTo565(color)
);
# Updates the text of a specified component on the display.
- action: component_text
variables:
page: string # Send `mem` for a memory var
id: string # Identifier of the component. Ensure it matches the component's ID in your display layout.
txt: string # New text content to be displayed. Supports both static and dynamic content.
then:
- lambda: |-
std::string txt_str = std::string(txt);
if (txt_str == "${SENTINEL_UNAVAILABLE}") txt_str = "${LOCALIZATION[LANG].unavailable}";
else if (txt_str == "${SENTINEL_UNKNOWN}") txt_str = "${LOCALIZATION[LANG].unknown}";
else if (txt_str == "${SENTINEL_NO_NAME}") txt_str = "${LOCALIZATION[LANG].no_name}";
action_component_text->execute(
page.c_str(),
id.c_str(),
txt_str.c_str()
);
# Updates the value of a specified component on the display.
- action: component_val
variables:
page: string # Send `mem` for a memory var
id: string # Identifier of the component to update. Must match the component's ID in the display layout.
val: int # New integer value to set for the component. Adjust based on the data type you're displaying.
then:
- lambda: |-
action_component_val->execute(
page.c_str(),
id.c_str(),
val
);
# Hides or shows a specified component on the display.
# Supports both simple component IDs and page-specific IDs (page.component format).
- action: components_visibility
variables:
page: string # Page name for visibility control. Empty string applies to current page.
ids: string[] # Component identifiers. Can be 'component' or 'page.component' format.
visible: bool # Set to true to show the component, or false to hide it.
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Action: components_visibility");
// Resolve page to current page if empty
const std::string resolved_page = page.empty() ? current_page->state : page;
for (const auto &id : ids) {
action_component_visibility->execute(resolved_page.c_str(), id.c_str(), visible);
}
# Displays detailed information for a specific entity.
- action: entity_details_show
variables:
entity: string # The ID of the entity for which details are shown. Supports "embedded_climate" for built-in climate control.
back_page: string # Specifies the page to return to. Accepts "home" or "buttonpage01" to "buttonpage04".
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Action: entity_details_show");
ESP_LOGV("${TAG_API}", " entity: %s", entity.c_str());
ESP_LOGV("${TAG_API}", " back_page: %s", back_page.c_str());
HomeAssistantEntity entity_id = extractHomeAssistantEntity(entity);
if (entity == "embedded_climate") entity_id.domain = "climate";
else if (entity_id.domain == "alarm_control_panel") entity_id.domain = "alarm";
else if (entity_id.domain == "input_boolean") entity_id.domain = "switch";
else if (entity_id.domain == "input_button") entity_id.domain = "button";
if (entity_id.domain != "invalid" or entity == "embedded_climate") {
detailed_entity->publish_state(entity);
delay(${DELAY_DEFAULT});
goto_page->execute(get_page_id(entity_id.domain.c_str()));
delay(${DELAY_DEFAULT});
disp1->send_command_printf("back_page_id=%" PRIu8, get_page_id(back_page.c_str()));
if (entity_id.domain == "climate") {
delay(${DELAY_DEFAULT});
disp1->set_component_value("climate.embedded", (entity == "embedded_climate") ? 1 : 0);
}
}
- action: icon # Updates icon, color, and visibility for display components
variables:
page: string # Page name for visibility control (mandatory).
id: string # Identifier of the component.
icon: string # Icon codepoint, e.g., "/uE6E8" for `mdi:lightbulb-on-outline`.
icon_color: int[] # RGB color array for the icon, e.g., [0, 255, 0] for green.
visible: bool # Set to `true` for visible or `false` for hidden.
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Action: icon");
// Validate mandatory parameters
if (page.empty() || id.empty()) {
ESP_LOGW("${TAG_API}", "Bad params");
return;
}
ESP_LOGV("${TAG_API}", "Processing component ID: %s", id.c_str());
ESP_LOGV("${TAG_API}", " page: %s", page.c_str());
const bool is_home_page = (page == hmi::home::PAGE.name);
const bool is_current_page = (page == current_page->state);
// Only process if home page (global) OR current page
if (!is_home_page && !is_current_page) {
ESP_LOGV("${TAG_API}", "Skipping: Not current page");
return;
}
#if ESP_LOG_LEVEL >= ESP_LOG_VERBOSE
const uint16_t icon_len = icon.length();
if (icon_len == 3) {
const uint32_t code_point = nspanel_easy::decode_nextion_icon_utf8(icon.c_str(), icon_len);
ESP_LOGV("${TAG_API}", " icon: '%s' (\\u%04" PRIx32 ")", icon.c_str(), code_point);
} else if (icon_len > 0) {
ESP_LOGV("${TAG_API}", " icon: '%s' (len=%" PRIu16 ")", icon.c_str(), icon_len);
} else {
ESP_LOGV("${TAG_API}", " icon: null (len=0)");
}
#endif // ESP_LOG_LEVEL >= ESP_LOG_VERBOSE
ESP_LOGV("${TAG_API}", " icon_color: %" PRIu16, rgbTo565(icon_color));
ESP_LOGV("${TAG_API}", " visible: %s", YESNO(visible));
// Extract component information using helper function
const esphome::nspanel_easy::NSPanelEasyNextionComponent component = extractNextionComponent(id, page);
action_icon->execute(
component,
icon.c_str(),
icon_color.size() == 3 ? rgbTo565(icon_color) : -1,
visible,
is_home_page,
is_current_page
);
esphome:
platformio_options:
build_flags:
- -D NSPANEL_EASY_API
script:
- id: action_component_color
mode: single
parameters:
page: string # Send `mem` for a memory var
component: string # Identifier of the component to change color. Ensure this matches the component's ID in your display layout.
color: uint16_t # New color for the component, rgb565.
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Script: action_component_color");
ESP_LOGV("${TAG_API}", " page: %s", page.c_str());
ESP_LOGV("${TAG_API}", " component: %s", component.c_str());
ESP_LOGV("${TAG_API}", " color: %" PRIu16, color);
if (page == "mem") return;
if (display_mode == 4) return; // To do: Implement logic for new format
if (page.empty()) {
disp1->set_component_font_color(component.c_str(), color);
return;
}
disp1->send_command_printf("%s.%s.pco=%" PRIu16, page.c_str(), component.c_str(), color);
- id: action_component_text
mode: single
parameters:
page: string # Send `mem` for a memory var
component: string # Identifier of the component. Ensure it matches the component's ID in your display layout.
txt: string # New text content to be displayed. Supports both static and dynamic content.
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Script: action_component_text");
ESP_LOGV("${TAG_API}", " page: %s", page.c_str());
ESP_LOGV("${TAG_API}", " component: %s", component.c_str());
ESP_LOGV("${TAG_API}", " txt: %s", txt.c_str());
if (page.empty()) {
disp1->set_component_text(component.c_str(), txt.c_str());
return;
}
if (page != "mem") {
std::string escaped = txt;
for (size_t pos = 0; (pos = escaped.find('\\', pos)) != std::string::npos; pos += 2) {
escaped.replace(pos, 1, "\\\\");
}
for (size_t pos = 0; (pos = escaped.find('"', pos)) != std::string::npos; pos += 2) {
escaped.replace(pos, 1, "\\\"");
}
disp1->send_command_printf("%s.%s.txt=\"%s\"", page.c_str(), component.c_str(), escaped.c_str());
return;
}
- id: action_component_val
mode: single
parameters:
page: string # Send `mem` for a memory var
component: string # Identifier of the component to update. Must match the component's ID in the display layout.
val: int32_t # New integer value to set for the component. Adjust based on the data type you're displaying.
then:
# Extended by:
# - hw_buttons
# - page_home
# - page_qrcode
# - page_screensaver
# - version
- lambda: |-
ESP_LOGV("${TAG_API}", "Script: action_component_val");
ESP_LOGV("${TAG_API}", " page: %s", page.c_str());
ESP_LOGV("${TAG_API}", " component: %s", component.c_str());
ESP_LOGV("${TAG_API}", " val: %i", val);
if (page == "mem") return;
if (page.empty()) {
disp1->set_component_value(component.c_str(), val);
return;
}
disp1->send_command_printf("%s.%s.val=%" PRId32, page.c_str(), component.c_str(), val);
- id: action_component_visibility
mode: queued
max_runs: 10
parameters:
page: string # Page name for visibility control. Empty string applies to current page.
component: string # Component identifier. Can be 'component' or 'page.component' format.
visible: bool # Set to true to show the component, or false to hide it.
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Action: component_visibility");
ESP_LOGV("${TAG_API}", " page: %s", page.c_str());
if (component.empty()) {
ESP_LOGW("${TAG_API}", "Empty component ID");
return;
}
ESP_LOGV("${TAG_API}", " component: %s", component.c_str());
ESP_LOGV("${TAG_API}", " visible: %s", YESNO(visible));
if (page == "mem") return;
// Extract component information using helper function
const esphome::nspanel_easy::NSPanelEasyNextionComponent nextion_component =
extractNextionComponent(component, page);
const std::string component_page = nextion_component.page;
const char* target_id = nextion_component.component_id;
const bool is_home_page = (component_page == hmi::home::PAGE.name);
const bool is_current_page = (component_page == current_page->state);
// Always update the home page persistent visibility variable,
// regardless of which page is currently active
if (is_home_page)
disp1->send_command_printf("vis_%s=%" PRIu8, target_id, (uint8_t)visible);
// Apply the vis command only when the target page is currently visible
if (page.empty() || is_current_page) {
disp1->set_component_visibility(target_id, visible);
return;
}
if (!is_home_page)
ESP_LOGW("${TAG_API}", "Not the current page (%s vs %s)", page.c_str(), current_page->state.c_str());
- id: action_icon
mode: queued
max_runs: 10
parameters:
component: esphome::nspanel_easy::NSPanelEasyNextionComponent # Component identifier
icon: string # The icon code
icon_color: int32_t # -1 if no color should be set, otherwise the decimal RGB565 color
visible: bool # Set to true to show the component, or false to hide it.
is_home_page: bool
is_current_page: bool
then:
- lambda: |-
// Determine target ID format based on page context
const char* target_id;
char full_id[30]; // 14 + 1 (dot) + 14 + 1 (null) = 30
if (is_current_page) {
// Use short format for current page: "id"
target_id = component.component_id;
action_component_visibility->execute(component.page, component.component_id, visible);
} else {
// Use full format for global components: "page.id"
snprintf(full_id, sizeof(full_id), "%s.%s", component.page, component.component_id);
target_id = full_id;
}
ESP_LOGV("${TAG_API}", " target: %s", target_id);
// Set icon and color
disp1->set_component_text(target_id, icon.c_str());
if (icon_color >= 0) {
disp1->set_component_font_color(target_id, static_cast<uint16_t>(icon_color));
}
- id: !extend dump_config
then:
- lambda: |-
// Report API status
if (api_server->is_connected()) {
ESP_LOGCONFIG("${TAG_API}", "API: Connected");
} else {
ESP_LOGW("${TAG_API}", "API: DISCONNECTED");
}
- id: ha_button
mode: parallel
max_runs: 8
parameters:
page: string
component: string
command: string
then:
- lambda: |-
ESP_LOGV("${TAG_API}", "Send 'button_click' event to HA:");
ESP_LOGV("${TAG_API}", " page: %s", page.c_str());
ESP_LOGV("${TAG_API}", " component: %s", component.c_str());
ESP_LOGV("${TAG_API}", " command: %s", command.c_str());
fire_ha_event("button_click", {
{"page", page.c_str()},
{"component", component.c_str()},
{"command", command.c_str()}
});
ESP_LOGV("${TAG_API}", "'button_click' event sent");
- id: !extend stop_all
then:
- lambda: |-
action_component_color->stop();
action_component_text->stop();
action_component_val->stop();
action_component_visibility->stop();
ha_button->stop();
update_flag_api_ready->stop();
- id: update_flag_api_ready
then:
- lambda: |-
const bool previous_flag_api_ready = system_flags.api_ready;
system_flags.api_ready = api_server->is_connected();
if (previous_flag_api_ready != system_flags.api_ready) {
refresh_wifi_icon->execute();
}
- id: !extend watchdog_round
then:
- lambda: |-
update_flag_api_ready->execute();
if (!system_flags.api_ready and
current_page_id != ${PAGE_BOOT_ID} and
current_page_id != ${PAGE_CONFIRM_ID} and
current_page_id != ${PAGE_HOME_ID} and
current_page_id != ${PAGE_QRCODE_ID} and
current_page_id != ${PAGE_SCREENSAVER_ID} and
current_page_id != ${PAGE_SETTINGS_ID}) {
ESP_LOGW("${TAG_API}", "API disconnected. Falling back to Home page.");
goto_page->execute(${PAGE_HOME_ID});
}
...