Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rcolistete/MicroPython_MAX44009_driver
MicroPython driver for MAX44009 light sensor
https://github.com/rcolistete/MicroPython_MAX44009_driver
Last synced: about 2 months ago
JSON representation
MicroPython driver for MAX44009 light sensor
- Host: GitHub
- URL: https://github.com/rcolistete/MicroPython_MAX44009_driver
- Owner: rcolistete
- License: mit
- Created: 2018-09-20T11:52:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-23T19:44:42.000Z (about 5 years ago)
- Last Synced: 2024-08-04T00:07:16.957Z (5 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-micropython - MicroPython_MAX44009_driver - MicroPython driver for MAX44009 light sensor. (Libraries / Sensors)
README
# MicroPython_MAX44009_driver
MicroPython driver for MAX44009 light sensorThere are specific versions for :
* BBC Micro:bit;
* low memory usage, using less RAM memory.#### Example using Micro:bit lowmem version, rename the driver to 'max44009.py' and copy it to flash memory.
```python
import max44009
from microbit import i2c
sensor = max44009.MAX44009(i2c)
sensor.illuminance_lux()
```