11 Commits

Author SHA1 Message Date
Edward Firmo
0f19d91e49 Add trigger on blueprint entity state 2024-01-31 18:20:18 +01:00
Edward Firmo
4b1de06991 Update CJK TFT files 2024-01-31 17:53:43 +01:00
Edward Firmo
f70e08cc8f Ensure notification is shown
It possibly fixes #1751
2024-01-31 17:43:42 +01:00
Edward Firmo
31cd798f6f Fix Update of Media Player Icons on Custom Buttons
Solves #1716
2024-01-31 16:58:57 +01:00
Edward Firmo
309f97626c Add "Fan" to chips 2024-01-31 16:43:42 +01:00
Edward Firmo
e5776e948c Move and push latest tag
Solves #1740
2024-01-31 13:20:48 +01:00
Edward Firmo
70e98495a2 Media Player Visualization on Chips 2024-01-31 13:12:52 +01:00
Edward Firmo
cbf2c8d904 Fix Icon's Colors on Home Page Values
Solves #1694
2024-01-31 11:39:34 +01:00
Edward Firmo
51d450a2dc Fix icon color for Home page values
Solves #1694
2024-01-31 11:33:40 +01:00
Edward Firmo
9d88d84faf Publish diagnostic sensor "Blueprint" and simplify TFT upload 2024-01-31 11:31:29 +01:00
Edward Firmo
74ea1ebb0e Move exit_reparse to advanced 2024-01-31 03:35:38 +01:00
128 changed files with 1424 additions and 121 deletions

View File

@@ -1,19 +1,29 @@
---
name: Update Stable Tag
name: Update Tags
on:
release:
types: [published]
jobs:
update-tag:
update-tags:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
- name: Move and push tag
- name: Set up Git
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- name: Move and push stable tag
run: |
git tag -f stable ${{ github.event.release.tag_name }}
git push -f origin stable
- name: Move and push latest tag
run: |
git tag -f latest ${{ github.event.release.tag_name }}
git push -f origin latest
...

View File

@@ -445,11 +445,14 @@ ensuring users are well-informed for successful system setup and operation.
| Change | Criticality | Affected Components |
| :-- | :--: | :--: |
| Fix Display of Climate Icons on Chips (#1675) | Minor | `Blueprint` |
| Fix Icon's Colors on Home Page Values (#1694) | Minor | `Blueprint` |
| Fix Update of Media Player Icons on Custom Buttons (#1716) | Minor | `Blueprint` |
| Long Click Action Bug Fix for Hardware Button (#1637) | Minor | `Blueprint` |
| Enhanced Memory Allocation When Uploading TFT (`esp-idf` only) | Enhancement | `ESPHome` |
| Enhanced Consistency in Cover Controls (#1688) | Enhancement | `Blueprint` |
| Support ESPHome `friendly_name` (#1719) | Enhancement | `Blueprint`<br>`ESPHome` |
| Motion Sensor for Display Wake-Up (#1687) | Enhancement | `Blueprint` |
| Expanded Visualization on Chips | Enhancement | `Blueprint` |
| Clean-up Blueprint Inputs (#1722) | Enhancement | `Blueprint` |
| Update docs (install.md) with memory requirements (#1720) | Documentation | `Documentation` |
<!-- markdownlint-enable MD013 MD033 -->
@@ -459,6 +462,10 @@ ensuring users are well-informed for successful system setup and operation.
Now, the chip is displayed only when the climate entity has an active HVAC action.
This change ensures that the chip is hidden in states like 'Idle' or other non-active states,
aligning the display behavior with the operational status of the climate entity for improved accuracy and user experience.
- **Fix Icon's Colors on Home Page Values**: Addressed an issue where icons for sensor domain entities on the home page were incorrectly displaying colors indicative of an "entity disabled" state.
This fix ensures that the icons now reflect their correct status, enhancing the visual accuracy and user interface experience.
- **Fix Update of Media Player Icons on Custom Buttons**: Corrected an issue where media player icons on custom buttons were not updating in real-time to reflect the current playback status.
This fix ensures that the icons dynamically represent the media player's state, improving the interface's responsiveness and accuracy.
- **Long Click Action Bug Fix for Hardware Button**: Resolved a bug where long click actions weren't executing on hardware buttons if no entity was assigned.
This fix ensures that custom actions linked to long presses will now run as intended, regardless of whether an entity is assigned to the button,
offering greater flexibility and reliability in user interactions.
@@ -480,6 +487,8 @@ presence, or door sensor to wake up the display, enhancing the panel's responsiv
Each detected motion or sensor activation event triggers the panel to wake up, with the sleep timer resetting with every new detection.
While the panel will still follow the pre-set sleep duration settings regardless of continuous motion or sensor activity,
this initial implementation marks a significant step in making user interactions more dynamic and intuitive.
- **Expanded Visualization on Chips**: Enhanced the home page chips to display not only Media Player entities but now also Fan entities, among previously supported domains.
This update broadens the informative visual feedback available on the home page, offering a more comprehensive and visually engaging snapshot of the device status within the user interface.
- **Clean-up Blueprint Inputs**: Simplified the naming of Blueprint inputs for better clarity and ease of use.
Labels such as *"Button14"* have been updated to more descriptive formats like *"Button page 2, Button 6"*, enhancing the user's ability to understand and navigate
- **Documentation Update on Memory Requirements for ESPHome**: Enhanced the installation documentation to include detailed guidelines on memory requirements.

View File

@@ -383,17 +383,6 @@ script:
- lambda: !lambda return (!id(tft_is_valid));
timeout: 1s
### Attempt twice with upload engine from v4.1.4 (115200bps) when TFT isn't detected
# - if:
# condition:
# - lambda: !lambda return (not id(tft_is_valid));
# then:
# - script.execute:
# id: upload_tft_sequence_attempt_v414
# url: !lambda return url.c_str();
# baud_rate: 115200
# - script.wait: upload_tft_sequence_attempt_v414
### Attempt twice at the target baud rate
- script.execute:
id: upload_tft_sequence_attempt
@@ -401,16 +390,26 @@ script:
- script.wait: upload_tft_sequence_attempt
### Attempt twice at the original baud rate
- script.execute:
id: upload_tft_sequence_attempt
baud_rate: !lambda return id(baud_rate_original);
- script.wait: upload_tft_sequence_attempt
- if:
condition:
- lambda: |-
return (id(baud_rate_original) != id(baud_rate_target));
then:
- script.execute:
id: upload_tft_sequence_attempt
baud_rate: !lambda return id(baud_rate_original);
- script.wait: upload_tft_sequence_attempt
### Attempt twice at the Nextion's default baud rate (115200bps)
- script.execute:
id: upload_tft_sequence_attempt
baud_rate: 115200
- script.wait: upload_tft_sequence_attempt
- if:
condition:
- lambda: |-
return (id(baud_rate_original) != 115200 and id(baud_rate_target) != 115200);
then:
- script.execute:
id: upload_tft_sequence_attempt
baud_rate: 115200
- script.wait: upload_tft_sequence_attempt
### Attempt twice with upload engine from v4.1.4 (115200bps)
- script.execute:
@@ -419,15 +418,6 @@ script:
baud_rate: 115200
- script.wait: upload_tft_sequence_attempt_v414
### Exit reparse and attempt twice again
- script.execute:
id: report_upload_progress
message: "Exiting reparse mode"
- script.execute:
id: upload_tft_sequence_attempt
baud_rate: 115200
- script.wait: upload_tft_sequence_attempt
### Restart Nextion and attempt twice again at default baud rate (115200bps)
- script.execute:
id: report_upload_progress

View File

@@ -29,6 +29,30 @@ button:
captive_portal:
script:
- id: exit_reparse
mode: restart
then:
- logger.log: "Exit reparse"
- uart.write: "DRAKJHSUYDGBNCJHGJKSHBDN"
- uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "recmod=0"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "recmod=0"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "connect"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: [0xFF, 0xFF]
# - uart.write: "connect"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "bkcmd=3"
# - uart.write: [0xFF, 0xFF, 0xFF]
- id: !extend stop_all
then:
- lambda: |-
exit_reparse->stop();
sensor:
##### Uptime Sensors #####
- name: Uptime seconds

View File

@@ -762,12 +762,6 @@ globals:
restore_value: false
initial_value: 'false'
##### Is blueprint updated #####
- id: is_blueprint_updated
type: bool
restore_value: false
initial_value: 'false'
##### Is global settings loaded #####
- id: is_global_settings_loaded
type: bool
@@ -1082,6 +1076,23 @@ binary_sensor:
then:
- script.execute: watchdog
- name: Blueprint
id: blueprint_status
platform: template
device_class: connectivity
publish_initial_state: false
entity_category: diagnostic
icon: mdi:link-variant
internal: false
disabled_by_default: false
on_state:
then:
- lambda: |-
static const char *const TAG = "binary_sensor.blueprint_status";
ESP_LOGD(TAG, "Blueprint synced: %s", x ? "True" : "False");
// Update api value on Nextion
disp1->send_command_printf("api=%i", x ? 1 : 0);
##### START - BUTTON CONFIGURATION #####
button:
###### Factory Reset button #####
@@ -1749,7 +1760,7 @@ text_sensor:
entity_category: diagnostic
icon: mdi:tag-text-outline
internal: false
update_interval: never
#update_interval: never
lambda: |-
return {"${version}"};
on_value:
@@ -1892,24 +1903,6 @@ script:
}
disp1->set_component_text_printf(component.c_str(), "%s", wrappedText.c_str());
- id: exit_reparse
mode: restart
then:
- logger.log: "Exit reparse"
- uart.write: "DRAKJHSUYDGBNCJHGJKSHBDN"
- uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "recmod=0"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "recmod=0"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "connect"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: [0xFF, 0xFF]
# - uart.write: "connect"
# - uart.write: [0xFF, 0xFF, 0xFF]
# - uart.write: "bkcmd=3"
# - uart.write: [0xFF, 0xFF, 0xFF]
- id: global_settings
mode: restart
parameters:
@@ -1950,7 +1943,7 @@ script:
page_screensaver->execute();
id(is_global_settings_loaded) = true;
id(is_blueprint_updated) = true;
blueprint_status->publish_state(true);
disp1->send_command_printf("api=1");
if (current_page->state != "boot") {
@@ -2060,11 +2053,11 @@ script:
mode: restart
then:
- lambda: |-
if (current_page->state == "notification") disp1->goto_page("home");
notification_label->publish_state("");
notification_text->publish_state("");
notification_unread->turn_off();
refresh_notification->execute();
if (current_page->state == "notification") disp1->goto_page("home");
- id: open_entity_settings_page
mode: restart
@@ -2281,6 +2274,7 @@ script:
then:
- script.execute: refresh_relays
- script.execute: refresh_wifi_icon
- script.execute: refresh_notification
- id: page_keyb_num
mode: restart
@@ -2414,7 +2408,9 @@ script:
condition:
- lambda: !lambda return id(setup_sequence_completed);
- lambda: |-
bool is_notification = (notification_text->state.empty() and notification_label->state.empty());
static const char *const TAG = "script.refresh_notification";
bool is_notification = ((not notification_text->state.empty()) or (not notification_label->state.empty()));
ESP_LOGV(TAG, "Notification: %s", is_notification ? "True" : "False");
disp1->send_command_printf("is_notification=%i", is_notification ? 0 : 1);
set_component_color->execute("home.bt_notific", notification_unread->state ? id(home_notify_icon_color_unread) : id(home_notify_icon_color_normal));
if (current_page->state == "home") {
@@ -2442,12 +2438,12 @@ script:
- lambda: |-
if (nextion_init->state) {
// Update Wi-Fi icon color
disp1->set_component_font_color("home.wifi_icon", (id(is_blueprint_updated)) ? (wifi_rssi->state > -70 ? 33808 : 64992) : 63488);
disp1->set_component_font_color("home.wifi_icon", (blueprint_status->state) ? (wifi_rssi->state > -70 ? 33808 : 64992) : 63488);
// Update Wi-Fi icon
disp1->set_component_text_printf("home.wifi_icon", "%s",
wifi_component->is_connected() ?
(api_server->is_connected() ?
(id(is_blueprint_updated) ? "\uE5A8" : // mdi:wifi - All right!
(blueprint_status->state ? "\uE5A8" : // mdi:wifi - All right!
"\uE7CF") : // mdi:home-assistant - Blueprint is out
"\uF256") : // mdi:api-off
"\uE5A9"); // mdi:wifi-off
@@ -2899,7 +2895,6 @@ script:
check_versions->stop();
display_embedded_temp->stop();
display_wrapped_text->stop();
exit_reparse->stop();
global_settings->stop();
ha_button->stop();
ha_call_service->stop();
@@ -3210,13 +3205,13 @@ script:
}
// report API status
bool previous_blueprint_status = id(is_blueprint_updated);
bool previous_blueprint_status = blueprint_status->state;
bool api_connected = api_server->is_connected();
if (api_connected) {
ESP_LOGI(TAG, "API: Connected");
} else {
ESP_LOGW(TAG, "API: DISCONNECTED");
id(is_blueprint_updated) = false;
blueprint_status->publish_state(false);
if (current_page->state != "blank" and
current_page->state != "boot" and
current_page->state != "home" and
@@ -3229,8 +3224,8 @@ script:
}
// Report blueprint version
id(is_blueprint_updated) = id(is_blueprint_updated) and wifi_connected and api_connected and (not version_blueprint->state.empty());
if (id(is_blueprint_updated))
blueprint_status->publish_state(blueprint_status->state and wifi_connected and api_connected and (not version_blueprint->state.empty()));
if (blueprint_status->state)
ESP_LOGI(TAG, "Blueprint: %s", version_blueprint->state.c_str());
else {
ESP_LOGW(TAG, "Blueprint: %s", (wifi_connected and api_connected) ? "Pending" : "DISCONNECTED");
@@ -3278,8 +3273,6 @@ script:
}
if (nextion_init->state) {
ESP_LOGI(TAG, " Init: True");
// Update api value on Nextion
if (id(is_blueprint_updated) != previous_blueprint_status) disp1->send_command_printf("api=%i", id(is_blueprint_updated) ? 1 : 0);
} else
ESP_LOGW(TAG, " Init: False");
if (version_tft->state.empty())

Binary file not shown.

Binary file not shown.

View File

@@ -23,6 +23,7 @@ Page alarm
vis bt_vacat,0
vis bt_bypass,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -188,6 +189,16 @@ Text bt_disarm_icon
Text : 
Max. Text Size : 3
Text unavailable
Attributes
ID : 32
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture bt_home_pic
Attributes
ID : 4

View File

@@ -15,6 +15,7 @@ Page boot
dim=100
covx baud,baud_rate.txt,0,0
baud_rate.txt+=" bps"
vis unavailable,0
Postinitialize Event
sendme
@@ -145,6 +146,16 @@ Text framework
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 16
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Dual-state Button bt_reboot
Attributes
ID : 4

View File

@@ -21,6 +21,7 @@ Page buttonpage01
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage02
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage03
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage04
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -32,6 +32,7 @@ Page climate
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -530,6 +531,16 @@ Text target_low
Touch Release Event
active_slider.val=2
Text unavailable
Attributes
ID : 54
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider slider_high
Attributes
ID : 7

View File

@@ -16,6 +16,7 @@ Page confirm
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -77,6 +78,16 @@ Text body
Text : Please confirm
Max. Text Size : 255
Text unavailable
Attributes
ID : 12
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button bclose
Attributes
ID : 2

View File

@@ -16,6 +16,7 @@ Page cover
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -84,6 +85,16 @@ Text battery_icon
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 14
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider coverslider
Attributes
ID : 6

View File

@@ -16,6 +16,7 @@ Page entitypage01
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ●○○○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page entitypage02
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○●○○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page entitypage03
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○○●○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 29

View File

@@ -16,6 +16,7 @@ Page entitypage04
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○○○●
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page fan
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -64,6 +65,16 @@ Text icon_state
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 16
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider fanslider
Attributes
ID : 3

View File

@@ -21,6 +21,7 @@ Page home
vis left_bt_text,0
vis right_bt_text,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -289,7 +290,7 @@ Text wifi_icon
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : î–¨
Max. Text Size : 5
Events
@@ -325,7 +326,7 @@ Text bt_notific
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -342,7 +343,7 @@ Text bt_qrcode
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -356,7 +357,7 @@ Text bt_entities
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -579,6 +580,16 @@ Text button06
printh FF FF FF
}
Text unavailable
Attributes
ID : 46
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather
Attributes
ID : 7

View File

@@ -16,6 +16,7 @@ Page keyb_num
{
page page_id.val
}
vis unavailable,0
Postinitialize Event
sendme
@@ -84,6 +85,16 @@ Text title
Text : Alarm
Max. Text Size : 30
Text unavailable
Attributes
ID : 24
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button b1
Attributes
ID : 3

View File

@@ -36,6 +36,7 @@ Page light
vis color_touch,0
vis color_button,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -158,6 +159,16 @@ Text icon_state
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 33
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture light_button
Attributes
ID : 8

View File

@@ -16,6 +16,7 @@ Page media_player
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -278,6 +279,16 @@ Text bt_on_off
printh 00
printh FF FF FF
Text unavailable
Attributes
ID : 26
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Progress Bar time_progress
Attributes
ID : 9

View File

@@ -16,6 +16,7 @@ Page notification
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -47,6 +48,16 @@ Text notifi_label
Text :
Max. Text Size : 100
Text unavailable
Attributes
ID : 10
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -11,6 +11,9 @@ Page qrcode
Swide right page ID: disabled
Events
Preinitialize Event
vis unavailable,0
Postinitialize Event
sendme
@@ -24,6 +27,16 @@ Text qrcode_label
Text :
Max. Text Size : 100
Text unavailable
Attributes
ID : 7
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
QR Code qrcode_value
Attributes
ID : 4

View File

@@ -14,6 +14,7 @@ Page screensaver
Preinitialize Event
vis text,0
dim=brightness_sleep
vis unavailable,0
Postinitialize Event
sendme
@@ -35,6 +36,16 @@ Text text
Touch Release Event
page back_page_id
Text unavailable
Attributes
ID : 5
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Timer swipestore
Attributes
ID : 3

View File

@@ -18,6 +18,7 @@ Page settings
dim_text.txt+="%"
vis lbl_sleep,0
vis bt_sleep,0
vis unavailable,0
Postinitialize Event
sendme
@@ -99,6 +100,16 @@ Text lbl_brightness
Text : Brightness
Max. Text Size : 25
Text unavailable
Attributes
ID : 21
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider brightslider
Attributes
ID : 1

View File

@@ -16,6 +16,7 @@ Page weather01
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ●○○○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather02
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○●○○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather03
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○●○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather04
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○○●○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather05
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○○○●
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

Binary file not shown.

Binary file not shown.

View File

@@ -23,6 +23,7 @@ Page alarm
vis bt_vacat,0
vis bt_bypass,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -195,6 +196,16 @@ Text bt_disarm_icon
Text : 
Max. Text Size : 3
Text unavailable
Attributes
ID : 33
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture bt_home_pic
Attributes
ID : 4
@@ -267,7 +278,7 @@ Hotspot bt_home
bt_home_icon.pco=0
Touch Release Event
lastclick.txt="{\"page\": \"alarm\", \"key\": \"home\", \"value\": \"click\", \"entity\": \""+entity.txt+"\", \"mui\": \""+bt_home_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
lastclick.txt="{\"page\": \"alarm\", \"key\": \"home\", \"value\": \"click\", \"mui\": \""+bt_home_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
printh 92
prints "localevent",0
printh 00
@@ -291,7 +302,7 @@ Hotspot bt_away
bt_away_icon.pco=0
Touch Release Event
lastclick.txt="{\"page\": \"alarm\", \"key\": \"away\", \"value\": \"click\", \"entity\": \""+entity.txt+"\", \"mui\": \""+bt_away_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
lastclick.txt="{\"page\": \"alarm\", \"key\": \"away\", \"value\": \"click\", \"mui\": \""+bt_away_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
printh 92
prints "localevent",0
printh 00
@@ -315,7 +326,7 @@ Hotspot bt_night
bt_night_icon.pco=0
Touch Release Event
lastclick.txt="{\"page\": \"alarm\", \"key\": \"night\", \"value\": \"click\", \"entity\": \""+entity.txt+"\", \"mui\": \""+bt_night_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
lastclick.txt="{\"page\": \"alarm\", \"key\": \"night\", \"value\": \"click\", \"mui\": \""+bt_night_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
printh 92
prints "localevent",0
printh 00
@@ -339,7 +350,7 @@ Hotspot bt_vacat
bt_vacat_icon.pco=0
Touch Release Event
lastclick.txt="{\"page\": \"alarm\", \"key\": \"vacation\", \"value\": \"click\", \"entity\": \""+entity.txt+"\", \"mui\": \""+bt_vacat_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
lastclick.txt="{\"page\": \"alarm\", \"key\": \"vacation\", \"value\": \"click\", \"mui\": \""+bt_vacat_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
printh 92
prints "localevent",0
printh 00
@@ -363,7 +374,7 @@ Hotspot bt_bypass
bt_bypass_icon.pco=0
Touch Release Event
lastclick.txt="{\"page\": \"alarm\", \"key\": \"bypass\", \"value\": \"click\", \"entity\": \""+entity.txt+"\", \"mui\": \""+bt_bypass_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
lastclick.txt="{\"page\": \"alarm\", \"key\": \"bypass\", \"value\": \"click\", \"mui\": \""+bt_bypass_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
printh 92
prints "localevent",0
printh 00
@@ -387,7 +398,7 @@ Hotspot bt_disarm
bt_disarm_icon.pco=0
Touch Release Event
lastclick.txt="{\"page\": \"alarm\", \"key\": \"disarm\", \"value\": \"click\", \"entity\": \""+entity.txt+"\", \"mui\": \""+bt_disarm_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
lastclick.txt="{\"page\": \"alarm\", \"key\": \"disarm\", \"value\": \"click\", \"mui\": \""+bt_disarm_text.txt+"\", \"code_format\": \""+code_format.txt+"\", \"code_arm_req\": \""+code_arm_req.txt+"\"}"
printh 92
prints "localevent",0
printh 00

View File

@@ -15,6 +15,7 @@ Page boot
dim=100
covx baud,baud_rate.txt,0,0
baud_rate.txt+=" bps"
vis unavailable,0
Postinitialize Event
sendme
@@ -152,6 +153,16 @@ Text framework
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 16
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Dual-state Button bt_reboot
Attributes
ID : 4

View File

@@ -21,6 +21,7 @@ Page buttonpage01
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage02
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage03
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage04
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -32,6 +32,7 @@ Page climate
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -530,6 +531,16 @@ Text target_low
Touch Release Event
active_slider.val=2
Text unavailable
Attributes
ID : 54
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider slider_high
Attributes
ID : 7

View File

@@ -16,6 +16,7 @@ Page confirm
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -77,6 +78,16 @@ Text body
Text : Please confirm
Max. Text Size : 255
Text unavailable
Attributes
ID : 12
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button bclose
Attributes
ID : 2

View File

@@ -16,6 +16,7 @@ Page cover
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -84,6 +85,16 @@ Text battery_icon
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 14
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider coverslider
Attributes
ID : 6

View File

@@ -16,6 +16,7 @@ Page entitypage01
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ●○○○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page entitypage02
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○●○○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page entitypage03
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○○●○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page entitypage04
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○○○●
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page fan
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -64,6 +65,16 @@ Text icon_state
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 16
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider fanslider
Attributes
ID : 3

View File

@@ -21,6 +21,7 @@ Page home
vis left_bt_text,0
vis right_bt_text,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -289,7 +290,7 @@ Text wifi_icon
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : î–¨
Max. Text Size : 5
Events
@@ -325,7 +326,7 @@ Text bt_notific
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -342,7 +343,7 @@ Text bt_qrcode
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -356,7 +357,7 @@ Text bt_entities
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -579,6 +580,16 @@ Text button06
printh FF FF FF
}
Text unavailable
Attributes
ID : 46
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather
Attributes
ID : 7

View File

@@ -16,6 +16,7 @@ Page keyb_num
{
page page_id.val
}
vis unavailable,0
Postinitialize Event
sendme
@@ -84,6 +85,16 @@ Text title
Text : Alarm
Max. Text Size : 30
Text unavailable
Attributes
ID : 24
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button b1
Attributes
ID : 3
@@ -265,6 +276,12 @@ Button benter
Events
Touch Release Event
aux.txt="{\"page\": \"keyb_num\", \"key\": \""+key.txt+"\", \"value\": \""+value.txt+"\", \"pin\": \""+pin.txt+"\", \"base_domain\": \""+domain.txt+"\"}"
printh 92
prints "localevent",0
printh 00
prints aux.txt,0
printh 00
printh FF FF FF
Button bview
Attributes

View File

@@ -36,6 +36,7 @@ Page light
vis color_touch,0
vis color_button,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -158,6 +159,16 @@ Text icon_state
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 33
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture light_button
Attributes
ID : 8

View File

@@ -16,6 +16,7 @@ Page media_player
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -277,6 +278,16 @@ Text bt_on_off
printh 00
printh FF FF FF
Text unavailable
Attributes
ID : 26
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Progress Bar time_progress
Attributes
ID : 9

View File

@@ -16,6 +16,7 @@ Page notification
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -47,6 +48,16 @@ Text notifi_label
Text :
Max. Text Size : 100
Text unavailable
Attributes
ID : 10
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -11,6 +11,9 @@ Page qrcode
Swide right page ID: disabled
Events
Preinitialize Event
vis unavailable,0
Postinitialize Event
sendme
@@ -24,6 +27,16 @@ Text qrcode_label
Text :
Max. Text Size : 100
Text unavailable
Attributes
ID : 7
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
QR Code qrcode_value
Attributes
ID : 4

View File

@@ -14,6 +14,7 @@ Page screensaver
Preinitialize Event
vis text,0
dim=brightness_sleep
vis unavailable,0
Postinitialize Event
sendme
@@ -35,6 +36,16 @@ Text text
Touch Release Event
page back_page_id
Text unavailable
Attributes
ID : 5
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Timer swipestore
Attributes
ID : 3

View File

@@ -18,6 +18,7 @@ Page settings
dim_text.txt+="%"
vis lbl_sleep,0
vis bt_sleep,0
vis unavailable,0
Postinitialize Event
sendme
@@ -195,6 +196,16 @@ Text t3
printh FF FF FF
}
Text unavailable
Attributes
ID : 25
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider brightslider
Attributes
ID : 1

View File

@@ -16,6 +16,7 @@ Page weather01
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ●○○○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather02
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○●○○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather03
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○●○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather04
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○○●○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather05
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○○○●
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

Binary file not shown.

Binary file not shown.

View File

@@ -23,6 +23,7 @@ Page alarm
vis bt_vacat,0
vis bt_bypass,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -188,6 +189,16 @@ Text bt_disarm_icon
Text : 
Max. Text Size : 3
Text unavailable
Attributes
ID : 32
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture bt_home_pic
Attributes
ID : 4

View File

@@ -15,6 +15,7 @@ Page boot
dim=100
covx baud,baud_rate.txt,0,0
baud_rate.txt+=" bps"
vis unavailable,0
Postinitialize Event
sendme
@@ -145,6 +146,16 @@ Text framework
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 16
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Dual-state Button bt_reboot
Attributes
ID : 4

View File

@@ -21,6 +21,7 @@ Page buttonpage01
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage02
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage03
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -21,6 +21,7 @@ Page buttonpage04
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -32,6 +32,7 @@ Page climate
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -530,6 +531,16 @@ Text target_low
Touch Release Event
active_slider.val=2
Text unavailable
Attributes
ID : 54
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider slider_high
Attributes
ID : 7

View File

@@ -16,6 +16,7 @@ Page confirm
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -77,6 +78,16 @@ Text body
Text : Please confirm
Max. Text Size : 255
Text unavailable
Attributes
ID : 12
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button bclose
Attributes
ID : 2

View File

@@ -16,6 +16,7 @@ Page cover
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -84,6 +85,16 @@ Text battery_icon
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 14
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider coverslider
Attributes
ID : 6

View File

@@ -16,6 +16,7 @@ Page entitypage01
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ●○○○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page entitypage02
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○●○○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page entitypage03
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○○●○
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 29

View File

@@ -16,6 +16,7 @@ Page entitypage04
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -280,6 +281,16 @@ Text page_index
Text : ○○○●
Max. Text Size : 12
Text unavailable
Attributes
ID : 31
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 28

View File

@@ -16,6 +16,7 @@ Page fan
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -64,6 +65,16 @@ Text icon_state
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 16
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider fanslider
Attributes
ID : 3

View File

@@ -21,6 +21,7 @@ Page home
vis left_bt_text,0
vis right_bt_text,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -289,7 +290,7 @@ Text wifi_icon
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : î–¨
Max. Text Size : 5
Events
@@ -325,7 +326,7 @@ Text bt_notific
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -342,7 +343,7 @@ Text bt_qrcode
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -356,7 +357,7 @@ Text bt_entities
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -579,6 +580,16 @@ Text button06
printh FF FF FF
}
Text unavailable
Attributes
ID : 46
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather
Attributes
ID : 7

View File

@@ -16,6 +16,7 @@ Page keyb_num
{
page page_id.val
}
vis unavailable,0
Postinitialize Event
sendme
@@ -84,6 +85,16 @@ Text title
Text : Alarm
Max. Text Size : 30
Text unavailable
Attributes
ID : 24
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button b1
Attributes
ID : 3

View File

@@ -36,6 +36,7 @@ Page light
vis color_touch,0
vis color_button,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -158,6 +159,16 @@ Text icon_state
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 33
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture light_button
Attributes
ID : 8

View File

@@ -16,6 +16,7 @@ Page media_player
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -278,6 +279,16 @@ Text bt_on_off
printh 00
printh FF FF FF
Text unavailable
Attributes
ID : 26
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Progress Bar time_progress
Attributes
ID : 9

View File

@@ -16,6 +16,7 @@ Page notification
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -47,6 +48,16 @@ Text notifi_label
Text :
Max. Text Size : 100
Text unavailable
Attributes
ID : 10
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

View File

@@ -11,6 +11,9 @@ Page qrcode
Swide right page ID: disabled
Events
Preinitialize Event
vis unavailable,0
Postinitialize Event
sendme
@@ -24,6 +27,16 @@ Text qrcode_label
Text :
Max. Text Size : 100
Text unavailable
Attributes
ID : 7
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
QR Code qrcode_value
Attributes
ID : 4

View File

@@ -14,6 +14,7 @@ Page screensaver
Preinitialize Event
vis text,0
dim=brightness_sleep
vis unavailable,0
Postinitialize Event
sendme
@@ -35,6 +36,16 @@ Text text
Touch Release Event
page back_page_id
Text unavailable
Attributes
ID : 5
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Timer swipestore
Attributes
ID : 3

View File

@@ -18,6 +18,7 @@ Page settings
dim_text.txt+="%"
vis lbl_sleep,0
vis bt_sleep,0
vis unavailable,0
Postinitialize Event
sendme
@@ -99,6 +100,16 @@ Text lbl_brightness
Text : Brightness
Max. Text Size : 25
Text unavailable
Attributes
ID : 21
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Slider brightslider
Attributes
ID : 1

View File

@@ -16,6 +16,7 @@ Page weather01
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ●○○○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather02
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○●○○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather03
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○●○○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather04
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○○●○
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

View File

@@ -16,6 +16,7 @@ Page weather05
{
page home
}
vis unavailable,0
Postinitialize Event
sendme
@@ -160,6 +161,16 @@ Text page_index
Text : ○○○○●
Max. Text Size : 15
Text unavailable
Attributes
ID : 20
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture weather_icon
Attributes
ID : 3

Binary file not shown.

View File

@@ -290,7 +290,7 @@ Text wifi_icon
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : î–¨
Max. Text Size : 5
Events
@@ -326,7 +326,7 @@ Text bt_notific
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -343,7 +343,7 @@ Text bt_qrcode
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -357,7 +357,7 @@ Text bt_entities
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events

Binary file not shown.

View File

@@ -290,7 +290,7 @@ Text wifi_icon
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : î–¨
Max. Text Size : 5
Events
@@ -326,7 +326,7 @@ Text bt_notific
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -343,7 +343,7 @@ Text bt_qrcode
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events
@@ -357,7 +357,7 @@ Text bt_entities
Dragging : 0
Send Component ID : on press and release
Associated Keyboard: none
Text :
Text : 
Max. Text Size : 3
Events

Binary file not shown.

View File

@@ -23,6 +23,7 @@ Page alarm
vis bt_vacat,0
vis bt_bypass,0
}
vis unavailable,0
Postinitialize Event
sendme
@@ -188,6 +189,16 @@ Text bt_disarm_icon
Text : 
Max. Text Size : 3
Text unavailable
Attributes
ID : 32
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Picture bt_home_pic
Attributes
ID : 4

View File

@@ -15,6 +15,7 @@ Page boot
dim=100
covx baud,baud_rate.txt,0,0
baud_rate.txt+=" bps"
vis unavailable,0
Postinitialize Event
sendme
@@ -145,6 +146,16 @@ Text framework
Text :
Max. Text Size : 10
Text unavailable
Attributes
ID : 16
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Dual-state Button bt_reboot
Attributes
ID : 4

View File

@@ -21,6 +21,7 @@ Page buttonpage01
vis button_back,1
vis page_index,1
}
vis unavailable,0
Postinitialize Event
sendme
@@ -392,6 +393,16 @@ Text button08bri
Text :
Max. Text Size : 4
Text unavailable
Attributes
ID : 52
Scope : local
Dragging : 0
Send Component ID : disabled
Associated Keyboard: none
Text :
Max. Text Size : 1
Button button_back
Attributes
ID : 6

Some files were not shown because too many files have changed in this diff Show More