esphome:
  name: esphome-web-804b48
  friendly_name: ESPHome Web 804b48

esp32:
  board: esp32dev
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "Hu0Hk+KecTjojyFVEOqUBssxZokcuUaAKRgpY0DdsSE="

ota:


wifi:
  # ssid:"Wizzanetwork"
  # password: "0532957092"
  
  manual_ip:
    # Set this to the IP of the ESP
    static_ip: 192.168.8.110
    # Set this to the IP address of the router. Often ends with .1
    gateway: 192.168.8.1
    # The subnet of the network. 255.255.255.0 works for most home networks.
    subnet: 255.255.255.0
  

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Esphome-Web-804B48"
    password: "j9NQWdAoJgGF"
  
captive_portal:

# follow configure use for DS18B20 temperature sensor, SHT30 temperature and humidity sensor. WS2812B RGB LEDs.
i2c:
  sda: 4
  scl: 16
  scan: true
  id: bus_a

switch:
  - platform: gpio
    pin: 26
    name: "Buzzer"
    
remote_receiver:
  pin: 19
  dump: all
           
# Example configuration entry
dallas:
  - pin: GPIO27
    update_interval: 60s

# Individual sensors
sensor:
  - platform: dallas
    address: 0x070000000d564b28  # your DS18B20 address
    name: "internal Temperature"
   
# Example configuration entry
  - platform: sht3xd
    temperature:
      name: "extend Temperature"
    humidity:
      name: "extend Humidity"
    address: 0x44
    update_interval: 60s
   
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-Vertical-LED"
    effects:
      - addressable_rainbow:        ##defined 7 effects styles
      - addressable_color_wipe:
      - addressable_scan:
      - addressable_twinkle:
      - addressable_random_twinkle:
      - addressable_fireworks:
      - addressable_flicker: