Skip to content

Commit

Permalink
Reduce brightness of white to reduce heat
Browse files Browse the repository at this point in the history
  • Loading branch information
spuder committed Nov 30, 2024
1 parent e09d705 commit fc24d81
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
22 changes: 13 additions & 9 deletions firmware/common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,16 @@ esphome:
- light.turn_on:
id: neopixel_light
effect: none
- delay: 100ms
- light.addressable_set:
id: neopixel_light
color_brightness: 50%
range_from: 0
range_to: ${led_count}
red: 100%
green: 100%
blue: 100%
brightness: 50%
# - delay: 100ms
# - light.addressable_set:
# id: neopixel_light
# color_brightness: 50%
# range_from: 0
# range_to: ${led_count}
# red: 50%
# green: 50%
# blue: 50%
- if:
condition:
lambda: |-
Expand Down Expand Up @@ -78,6 +79,9 @@ esp32:
type: esp-idf
version: 5.3.1
platform_version: 6.9.0 # https://github.com/platformio/platform-espressif32/releases/
sdkconfig_options:
CONFIG_MBEDTLS_HKDF_C: y # Needed for bambu KDF
CONFIG_MBEDTLS_MD_C: y # Needed for bambu KDF
# version: recommended
# sdkconfig_options:
# MBEDTLS_CERTIFICATE_BUNDLE: y
Expand Down
4 changes: 3 additions & 1 deletion firmware/conf.d/logger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,7 @@ logger:
select: INFO
number: INFO
pn532.mifare_ultralight: VERBOSE
#TODO: What are other pn532 protocol types?
pn532.mifare_classic: VERBOSE
TAG: VERBOSE
NFC: VERBOSE
"": ERROR

0 comments on commit fc24d81

Please sign in to comment.