Skip to content

Commit fc24d81

Browse files
committed
Reduce brightness of white to reduce heat
1 parent e09d705 commit fc24d81

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

firmware/common.yaml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,16 @@ esphome:
3434
- light.turn_on:
3535
id: neopixel_light
3636
effect: none
37-
- delay: 100ms
38-
- light.addressable_set:
39-
id: neopixel_light
40-
color_brightness: 50%
41-
range_from: 0
42-
range_to: ${led_count}
43-
red: 100%
44-
green: 100%
45-
blue: 100%
37+
brightness: 50%
38+
# - delay: 100ms
39+
# - light.addressable_set:
40+
# id: neopixel_light
41+
# color_brightness: 50%
42+
# range_from: 0
43+
# range_to: ${led_count}
44+
# red: 50%
45+
# green: 50%
46+
# blue: 50%
4647
- if:
4748
condition:
4849
lambda: |-
@@ -78,6 +79,9 @@ esp32:
7879
type: esp-idf
7980
version: 5.3.1
8081
platform_version: 6.9.0 # https://github.com/platformio/platform-espressif32/releases/
82+
sdkconfig_options:
83+
CONFIG_MBEDTLS_HKDF_C: y # Needed for bambu KDF
84+
CONFIG_MBEDTLS_MD_C: y # Needed for bambu KDF
8185
# version: recommended
8286
# sdkconfig_options:
8387
# MBEDTLS_CERTIFICATE_BUNDLE: y

firmware/conf.d/logger.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,7 @@ logger:
3636
select: INFO
3737
number: INFO
3838
pn532.mifare_ultralight: VERBOSE
39-
#TODO: What are other pn532 protocol types?
39+
pn532.mifare_classic: VERBOSE
40+
TAG: VERBOSE
41+
NFC: VERBOSE
4042
"": ERROR

0 commit comments

Comments
 (0)