Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sensor DHT22 on modul A16
#10
DHT22 use by 3.5v--5.5v power. so i have contact with 433MHz receiver's pin, that have a 5V point.
[Image: attachment.php?aid=6611]   
[Image: attachment.php?aid=6609]   
[Image: attachment.php?aid=6608]   
[Image: attachment.php?aid=6607]   
[Image: attachment.php?aid=6606]   
[Image: attachment.php?aid=6610]   
Code:
esphome:
  name: a16
  platform: ESP32
  board: esp32dev
 
 
# Example configuration entry for ESP32
i2c:
  sda: 4
  scl: 5
  scan: true
  id: bus_a


# Example configuration entry
ethernet:
  type: LAN8720
  mdc_pin: GPIO23
  mdio_pin: GPIO18
  clk_mode: GPIO17_OUT
  phy_addr: 0

# Example configuration entry
pcf8574:
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8
    address: 0x24

  - id: 'pcf8574_hub_out_2'  # for output channel 9-16
    address: 0x25

  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x21

  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x22

# Individual outputs
switch:
  - platform: gpio
    name: "light1"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: false

  - platform: gpio
    name: "light9"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: false

binary_sensor:
  - platform: gpio
    name: "input1"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: false

  - platform: gpio
    name: "input9"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: false

# Enable logging
logger:

# Enable Home Assistant API
api:

sensor:
  - platform: dht
    pin: 32
    temperature:
      name: "Living Room Temperature"
    humidity:
      name: "Living Room Humidity"
    update_interval: 60s

web_server:
  port: 80
Reply


Messages In This Thread
Sensor DHT22 on modul A16 - by Brouk - 11-20-2024, 12:16 PM
RE: Sensor DHT22 on modul A16 - by admin - 11-20-2024, 11:11 PM
RE: Sensor DHT22 on modul A16 - by Brouk - 11-22-2024, 09:11 PM
RE: Sensor DHT22 on modul A16 - by admin - 11-22-2024, 10:39 PM
RE: Sensor DHT22 on modul A16 - by Brouk - 11-23-2024, 11:23 AM
RE: Sensor DHT22 on modul A16 - by admin - 11-23-2024, 11:43 AM
RE: Sensor DHT22 on modul A16 - by Brouk - 11-24-2024, 10:44 AM
RE: Sensor DHT22 on modul A16 - by admin - 11-24-2024, 01:17 PM
RE: Sensor DHT22 on modul A16 - by Brouk - 12-04-2024, 05:21 PM
RE: Sensor DHT22 on modul A16 - by admin - 12-07-2024, 05:41 AM
RE: Sensor DHT22 on modul A16 - by Brouk - 12-13-2024, 05:04 PM
RE: Sensor DHT22 on modul A16 - by admin - 12-14-2024, 01:15 AM

Forum Jump:


Users browsing this thread:
1 Guest(s)