Skip to content

Commit b549f0a

Browse files
committed
Update Readme
1 parent 3cd41a4 commit b549f0a

File tree

5 files changed

+27
-16
lines changed

5 files changed

+27
-16
lines changed

.github/workflows/pages-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232
committer_name: GitHub Actions
3333
committer_email: actions@github.com
3434
message: Update manifest.json
35-
add: "docs/*.md"
35+
add: "docs/*.md README.md"
3636
push: true

firmware/common.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ esphome:
66
name_add_mac_suffix: true
77
project:
88
name: spuder.openspool
9-
version: ${version} #TODO: why is this changing in github actions, but not sticking in 'make' command?
9+
version: ${version}
1010
# on_update:
1111
min_version: 2024.10.1
1212
platformio_options:

firmware/conf.d/debug.yaml

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,33 @@ debug:
66

77
logger:
88
level: debug
9-
# level: VERBOSE #TODO: drop to debug
9+
1010

1111
text_sensor:
12-
- platform: version
13-
name: "Current Firmware Version"
14-
hide_timestamp: true
12+
# Note that this only returns the esphome compiled version
13+
# It does not return esphome.platform.version, as that value is only available through the api
14+
# - platform: version
15+
# name: "Current Firmware Version"
16+
# hide_timestamp: true
17+
# state_topic:
18+
# # web_server:
19+
# # sorting_group_id: sorting_group_firmware
20+
21+
- platform: template
22+
name: "OpenSpool Version"
23+
lambda: |-
24+
return to_string(ESPHOME_PROJECT_VERSION);
1525
state_topic:
16-
# web_server:
17-
# sorting_group_id: sorting_group_firmware
26+
entity_category: diagnostic
27+
icon: mdi:new-box
1828

19-
- platform: debug
20-
device:
21-
name: "Device Info"
22-
state_topic:
23-
reset_reason:
24-
name: "Reset Reason"
25-
state_topic:
29+
# - platform: debug
30+
# device:
31+
# name: "Device Info"
32+
# state_topic:
33+
# reset_reason:
34+
# name: "Reset Reason"
35+
# state_topic:
2636

2737
sensor:
2838
- platform: debug

firmware/conf.d/improv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
improv_serial:
2-
next_url: http://{{ip_address}}
2+
next_url: "http://{{ip_address}}"

firmware/conf.d/leds.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ light:
1010
default_transition_length: 0.4s
1111
restore_mode: ALWAYS_OFF
1212
state_topic:
13+
entity_category: diagnostic
1314
effects:
1415
- addressable_rainbow:
1516
name: Rainbow

0 commit comments

Comments
 (0)