You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure what type of failure you're experiencing, and reading your config without being wrapped in a code block is challenging. I'd suggest getting basic UART working without this component first. See the Debugging heading on the ESPHome UART bus page.
Hi sir
I tried to use faikin to flash the ESPHome firmware, but UART looked not work.
Faikin's GPIO tx/rx is 48/34
ESPHome yaml:
esphome:
name: $name
comment: $upper_devicename
name_add_mac_suffix: false
platformio_options:
board_build.flash_mode: dio
board_build.mcu: esp32s3
esp32:
board: esp32-s3-devkitc-1
variant: esp32s3
flash_size: 4MB
#framework:
type: esp-idf
version: recommended
external_components:
#- source: github://joshbenner/esphome-daikin-s21@main
components: [ daikin_s21 ]
type: local
path: /config/custom_components
components: [ daikin_s21 ]
uart:
id: s21_tx
tx_pin: 48
baud_rate: 2400
data_bits: 8
parity: EVEN
stop_bits: 2
id: s21_rx
rx_pin:
number: 34
inverted: true
baud_rate: 2400
data_bits: 8
parity: EVEN
stop_bits: 2
daikin_s21:
tx_uart: s21_tx
rx_uart: s21_rx
climate:
platform: daikin_s21
visual:
temperature_step: 1.0
binary_sensor:
name: "${upper_devicename} Status"
button:
name: Safe Mode Boot
entity_category: diagnostic
name: "${upper_devicename} Restart"
light:
chipset: WS2812
pin: GPIO47
num_leds: 3
rgb_order: GRB
rmt_channel: 0
name: "${upper_devicename} RGB LED"
sensor:
platform: daikin_s21
inside_temperature:
name: "${upper_devicename} Inside Temperature"
outside_temperature:
name: "${upper_devicename} Outside Temperature"
coil_temperature:
name: "${upper_devicename} Coil Temperature"
fan_speed:
name: "${upper_devicename} Fan Speed"
platform: wifi_signal
name: "${upper_devicename} WiFi Signal"
update_interval: 60s
platform: uptime
name: "${upper_devicename} Uptime"
filters:
unit_of_measurement: "h"
accuracy_decimals: 1
text_sensor:
platform: version
name: "${upper_devicename} ESPHome Version"
platform: wifi_info
ip_address:
name: "${upper_devicename} IP Address"
The text was updated successfully, but these errors were encountered: