Update doc images

This commit is contained in:
aderusha 2023-11-02 07:31:42 -04:00
parent 50aee2538c
commit a17a630b28
7 changed files with 43261 additions and 43247 deletions

5
Arduino_Sketch/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch

View File

@ -268,6 +268,12 @@ blueprint:
default: false
selector:
boolean:
text_enable:
name: "Text enabled"
description: "Enable text, font, and colors. If disabled, no output will be sent to the button but the toggle actions will still be activated on press. Useful to combine with other blueprints that might place output on this button."
default: true
selector:
boolean:
mode: parallel
max_exceeded: silent
@ -300,6 +306,7 @@ variables:
ycen_select: !input ycen_select
ycen: '{{ ycen_select.split(" - ")[0] | int(default=1) }}'
wrap: !input wrap
text_enable: !input text_enable
haspobject: '{{ "p[" ~ hasppage ~ "].b[" ~ haspbutton ~ "]" }}'
commandtopic: '{{ "hasp/" ~ haspname ~ "/command/" ~ haspobject }}'
jsontopic: '{{ "hasp/" ~ haspname ~ "/state/json" }}'
@ -429,6 +436,8 @@ action:
or
((trigger.platform == 'template') and (trigger.entity_id == haspsensor) and (trigger.to_state.state == 'ON'))
-}}
sequence:
- service: mqtt.publish
data:
@ -450,7 +459,7 @@ action:
# Update display if our entity has changed state
- conditions: # Update display if our entity has changed state
- condition: template
value_template: '{{ (trigger.platform == "state") and (trigger.entity_id == entity) }}'
value_template: '{{ (trigger.platform == "state") and (trigger.entity_id == entity) and (text_enable == true) }}'
sequence:
- service: mqtt.publish
data:
@ -493,7 +502,7 @@ action:
# Theme: Apply selected foreground color when it changes
- conditions:
- condition: template
value_template: "{{ trigger.topic == selectedfgtopic }}"
value_template: "{{ (trigger.topic == selectedfgtopic) and (text_enable == true) }}"
sequence:
- service: mqtt.publish
data:
@ -503,7 +512,7 @@ action:
# Theme: Apply selected background color on change
- conditions:
- condition: template
value_template: "{{ trigger.topic == selectedbgtopic }}"
value_template: "{{ (trigger.topic == selectedbgtopic) and (text_enable == true) }}"
sequence:
- service: mqtt.publish
data:
@ -513,7 +522,7 @@ action:
# Theme: Apply unselected foreground color on change
- conditions:
- condition: template
value_template: "{{ trigger.topic == unselectedfgtopic }}"
value_template: "{{ (trigger.topic == unselectedfgtopic) and (text_enable == true) }}"
sequence:
- service: mqtt.publish
data:
@ -523,7 +532,7 @@ action:
# Theme: Apply unselected background color on change
- conditions:
- condition: template
value_template: "{{ trigger.topic == unselectedbgtopic }}"
value_template: "{{ (trigger.topic == unselectedbgtopic) and (text_enable == true) }}"
sequence:
- service: mqtt.publish
data:

BIN
images/HASP PCB Back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 KiB

BIN
images/HASP PCB Front.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB