Fix WiFi configuration: Update SSID to use correct secret and remove unnecessary settings; Enhance display configuration: Adjust color order, data rate, and buffer type
This commit is contained in:
@@ -24,10 +24,8 @@ ota:
|
|||||||
password: !secret ota_password
|
password: !secret ota_password
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
ssid: !secret wifi_ssid
|
ssid: !secret wifi_iot_ssid
|
||||||
password: !secret wifi_password
|
password: !secret wifi_password
|
||||||
fast_connect: true
|
|
||||||
power_save_mode: none
|
|
||||||
ap:
|
ap:
|
||||||
ssid: "${name}-fallback"
|
ssid: "${name}-fallback"
|
||||||
password: !secret fallback_password
|
password: !secret fallback_password
|
||||||
@@ -65,10 +63,15 @@ display:
|
|||||||
reset_pin: GPIO4
|
reset_pin: GPIO4
|
||||||
rotation: 0
|
rotation: 0
|
||||||
invert_colors: false
|
invert_colors: false
|
||||||
|
color_order: bgr
|
||||||
|
data_rate: 40MHz
|
||||||
dimensions:
|
dimensions:
|
||||||
width: 240
|
width: 240
|
||||||
height: 320
|
height: 320
|
||||||
id: my_display
|
id: my_display
|
||||||
|
auto_clear_enabled: false
|
||||||
|
# Use NONE to avoid RAM buffer - direct writes only
|
||||||
|
buffer_type: NONE
|
||||||
lambda: |-
|
lambda: |-
|
||||||
// Colors
|
// Colors
|
||||||
auto red = Color(255, 0, 0);
|
auto red = Color(255, 0, 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user