KinCony KC868-Uair

esp32 global Comes with ESPHome misc
KinCony KC868-Uair - kc868-uair.jpg

GPIO Pinout

PinFunction
GPIO2433MHz Transmitter
GPIO13433MHz Receiver
GPIO19IR Receiver
GPIO22IR Transmitter
GPIO26Buzzer
GPIO4IIC_SDA
GPIO16IIC_SCL
GPIO27DS18B20 Temperature sensor
GPIO324*WS2812B LED Bottom
GPIO331*WS2812B LED vertical bar
GPIO15Free GPIO
GPIO5Free GPIO
GPIO21Free GPIO
GPIO25Free GPIO
GPIO36Free GPIO
GPIO34Free GPIO
GPIO17Free GPIO
GPIO18Free GPIO
GPIO23Free GPIO
GPIO14Free GPIO
GPIO39Free GPIO
GPIO35Free GPIO
Additional pinout/design details

Basic Configuration

# Basic Config
esphome:
  name: KC868-Uair
esp32:
  board: esp32dev
  framework:
    type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
  encryption:
    key: "hx8eSqbwjWs9/2bK0qK55QfTIOpI4gCfzLOeaOXZMaU="
i2c:
  sda: 4
  scl: 16
  scan: true
  id: bus_a
# Example configuration entry
one_wire:
  - pin: GPIO27
    update_interval: 15s
# Individual sensors
sensor:
  - platform: dallas_temp
    address: 0xC000000004D81528
    name: "internal Temperature"
# Example configuration entry
  - platform: sht3xd
    temperature:
      name: "extend Temperature"
    humidity:
      name: "extend Humidity"
    address: 0x44
    update_interval: 15s
light:
  - platform: fastled_clockless
    chipset: WS2812B
    pin: GPIO32    # Pin Define connected with LED strip
    num_leds: 4  #LEDs number
    rgb_order: GRB
    name: "Uair-Bottom-LED"
    effects:
      - addressable_rainbow:        ##defined 7 effects styles
      - addressable_color_wipe:
      - addressable_scan:
      - addressable_twinkle:
      - addressable_random_twinkle:
      - addressable_fireworks:
      - addressable_flicker:
  - platform: fastled_clockless
    chipset: WS2812B
    pin: GPIO33    # Pin Define connected with LED strip
    num_leds: 1  #LEDs number
    rgb_order: RGB
    name: "Uair-VVertical-LED"
    effects:
      - addressable_rainbow:        ##defined 7 effects styles
      - addressable_color_wipe:
      - addressable_scan:
      - addressable_twinkle:
      - addressable_random_twinkle:
      - addressable_fireworks:
      - addressable_flicker: