Temperatur- und Feuchtigkeitssensor
maschinell erzeugt
Zu DHT11 haben wir kein Datenblatt mehr – der Hersteller hat die Datei offenbar zurückgezogen. Bei Google suchen.
Im Forum und im Wiki
-
Thread
Interface DHT22 to FPGA
-- Engineer: -- -- Create Date: 16:00:25 05/09/2018 -- Design Name: -- Module Name: DHT11 - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: --
: out std_logic_vector (N-1 downto 0); tick_done: out std_logic ); end DHT11; architecture Behavioral of DHT11 is constant DELAY_1_MS: positive := 1*10**6/CLK_PERIOD_NS+1; constant DELAY_40_US: positive := 40*10**3/CLK_PERIOD_NS+1; constant DELAY_80_US: positive
-
Thread
"Problem Reading Temperature from DHT11 Sensor via RS485 Between Raspberry Pi 4 and Raspberry Pi Pic
I want to read the temperature data from the DHT11 sensor connected to the Pico using RS485 between Raspberry Pi 4 and Raspberry Pi Pico. I use the following code for this, but when I use it like this, I can send data from Raspberry Pi without any
code] Raspberry Pi Pico Code [code]from machine import Pin import time from dht import DHT11 uart_tx = machine.Pin(4) # TX pin: GPIO 0 uart_rx = machine.Pin(5) # RX pin: GPIO 1 uart = machine.UART(1, baudrate=9600, tx=uart_tx, rx=uart_rx) def response(): received_data
-
Thread
Humidity Sensor with DHT11 and PIC16F676
Hello Guys I am trying to develop a humidity sensor with DHT11 for my bathroom. The DHT11 Sensor reads the humidity and sends it to the PIC, if the humidity is over 75% a LED should light up. If its under 75% the LED is off. But I have two problems. First
*Interesting:* If I upload the same code to a programming board with the PIC18F45K22 and add the DHT11 Sensor, everything works as it should. Sadly I am not able to use this programming board for my project. Therefore I would like to do it with the PIC16F676. Have you guys any idea, how i can fix
Kennst du das offizielle Datenblatt zu DHT11? Trag den PDF-Link ein.