def __init__(self,pin1='5',pin2='4'):
"""initialize the function with the pins 5,4 if you don't choice else
fill pin,pin in when calling the function.
In this function we initialize the i2c bus and the oled display. Than
activate wifi radio. """
self.pin1 = pin1
self.pin2 = pin2
self.name = ''
self.strengt = ''
self.status = ''
self.kanaal = ''
self.i2c = machine.I2C(machine.Pin(5), machine.Pin(4))
self.oled = ssd1306.SSD1306_I2C(128, 64, self.i2c)
self.oled.fill(1)
self.oled.show()
self.wlan = network.WLAN(network.STA_IF)
self.wlan.active(True)
displaywifi.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录