This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Example. Using I2C at P7, P6 | |
# Micropython | |
# BME280 sensor (part of Pimoroni multi-sensor-stick PIM745) | |
# | |
from machine import I2C | |
from lib.bme280_float import * | |
from lib.ssd1306 import SSD1306_I2C | |
from utime import sleep |
OlderNewer