Skip to content

Micropython driver for I2C magnetometer (clone of HMC5883L)

Notifications You must be signed in to change notification settings

kmm/micropython-QMC5883L

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

micropython-QMC5883L

Micropython driver for QMC5883L digital compass

Overview

Should be compatible with most micropython platforms, tested on ESP32-C3.

Example Usage

import qmc5883l
bus = SoftI2C(scl=Pin(3), sda=Pin(4), freq=100000)
qmc = QMC5883L(bus)
(x, y, z, status, temperature) = qmc.read()

References

About

Micropython driver for I2C magnetometer (clone of HMC5883L)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages