Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

mcauser/microbit-dht12

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BBC micro:bit MicroPython DHT12 I2C

A micro:bit MicroPython library for interfacing with an Aosong DHT12 temperature and humidity sensor over I2C.

This library focuses on using the I2C interface. The sensor also supports a 1-wire interface, available when pin 4 is connected to GND.

demo

Examples

In these examples, I am using pins 13 and 15 for I2C clock and data, however, you can use any pin. Pins 13 and 15 are normally used for SPI. My Kitronik edge connector breakout board does not have pin headers soldered for the standard I2C pins 19 and 20 (where you can find the accelerometer and compass), otherwise I'd be using them.

Basic measurement

from microbit import *
import dht12

i2c.init(sda=pin15, scl=pin13)
sensor = dht12.DHT12(i2c)

sensor.measure()
print(sensor.temperature())
print(sensor.humidity())

Press Button A to measure, Button B to exit

from microbit import *
import dht12

i2c.init(sda=pin15, scl=pin13)
sensor = dht12.DHT12(i2c)

while True:
	if button_a.is_pressed():
		try:
			sensor.measure()
			display.scroll(str(sensor.temperature())+"c", 50)
		except OSError:
			display.scroll("Err")
	if button_b.is_pressed():
		display.scroll("End")
		break

Continuous measurement

from microbit import *
import dht12

i2c.init(sda=pin15, scl=pin13)
sensor = dht12.DHT12(i2c)

while True:
	try:
		sensor.measure()
		print(sensor.temperature())
		print(sensor.humidity())
		sleep(4000)
	except OSError:
		print("Error")
		sleep(1000)

Links

License

Licensed under the MIT License.

About

MicroPython for micro:bit library for the Aosong DHT12 temperature and humidity sensor

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.