MicroPython ESP32扫描I2C设备地址
Posted perseverance52
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MicroPython ESP32扫描I2C设备地址相关的知识,希望对你有一定的参考价值。
【MicroPython ESP32】扫描I2C设备地址
- 本示例基于
Thonny
平台开发。
通过I2C扫描获取挂载在外设上的设备地址,已方便管理和了解I2C设备是否正常运行状态。
- 有关Micropython esp32 i2c外设功能介绍可以参考官方说明文档:
http://docs.micropython.org/en/latest/esp32/quickref.html#hardware-i2c-bus
ESP32 硬件I2C介绍
有两个标识符为
0
和1
的I2C
硬件外设。任何可用的支持输出的引脚都可以用于SCL和SDA,但下面给出了默认值。
I2C(0) | I2C(0) | |
---|---|---|
SCL | 18 | 25 |
SDA | 19 | 26 |
- 引用默认的I2C引脚方式:
from machine import Pin, I2C
i2c = I2C(0)# 默认的i2c0:scl:18 sda:19
i2c = I2C(1)# 默认的i2c1:scl:25 sda:26
- 自定义引脚引用方式
from machine import Pin, I2C
i2c = I2C(1, scl=Pin(5), sda=Pin(4), freq=400000)
示例代码
from utime import sleep # 延时函数在utime库中
from machine import I2C,Pin
#i2c = I2C(scl=Pin(18), sda=Pin(19),freq=400000)
led = Pin(2,Pin.OUT)
i2c = I2C(0)
if __name__ == '__main__':
while True: # 无限循环
print("helloworld") # 打印"helloworld"字串到console中
sleep(5) # 打印完之后休眠1秒
print('Scan i2c bus...')
devices = i2c.scan()
if len(devices) == 0:
print("No i2c device !")
else:
print('i2c devices found:',len(devices))
for device in devices:
print("Decimal address: ",device," | Hexa address: ",hex(device))
led.value(led.value()^1)
- Shell调试窗口输出扫描到的I2C地址:
以上是关于MicroPython ESP32扫描I2C设备地址的主要内容,如果未能解决你的问题,请参考以下文章
MicroPython ESP32ssd1306驱动0.96“I2C屏幕汉字显示示例
使用ESP32 MicroPython I2C功能读取 BH1750光度传感器模块数据
MicroPython ESP32ssd1306模块基于GB2312字库驱动0.96“I2C屏幕汉字显示示例