diff --git a/dht11/dht11.py b/dht11/dht11.py
new file mode 100644
index 0000000..b2d17eb
--- /dev/null
+++ b/dht11/dht11.py
@@ -0,0 +1,7 @@
+import dht
+import machine
+d = dht.DHT11(machine.Pin(16))
+
+d.measure()
+print(d.temperature())
+print(d.humidity())
\ No newline at end of file
diff --git a/dht11/dht11_bb.png b/dht11/dht11_bb.png
new file mode 100644
index 0000000..c168437
Binary files /dev/null and b/dht11/dht11_bb.png differ