IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> ESP8266/ESP32 + MicroPython (三) 几个实验 -> 正文阅读

[Python知识库]ESP8266/ESP32 + MicroPython (三) 几个实验

?不是什么高科技,网上可以搜到很多,不过 MicroPython 比较乱,不同的开发板有些细微的差别,库也是千差万别。以下为实测通过的。

# 闪灯 (on off 电平反的)
import machine
import time
led = machine.Pin(2, machine.Pin.OUT)
while True:
    led.off()
    time.sleep(0.1)
    led.on()
    time.sleep(0.1)
    led.off()
    time.sleep(0.1)
    led.on()
    time.sleep(1)
# DHT11
import dht
import machine
d = dht.DHT11(machine.Pin(16))
d.measure()
print(d.temperature() ,d.humidity())
# DHT22
import dht
import machine
d = dht.DHT22(machine.Pin(16))
d.measure()
print(d.temperature() ,d.humidity())
# AHT10(I2C) (配合库 ahtx0.py   来源 https://pypi.org/project/micropython-ahtx0/#description )
import utime
from machine import Pin, I2C
import ahtx0
# I2C for the Wemos D1 Mini with ESP8266
i2c = I2C(scl=Pin(4), sda=Pin(5))    # 注意例程居然是反的,可能是针对其他开发板吧
# Create the sensor object using I2C
sensor = ahtx0.AHT10(i2c)
while True:
    print("\nTemperature: %0.2f C" % sensor.temperature)
    print("Humidity: %0.2f %%" % sensor.relative_humidity)
    utime.sleep(5)
# OLED  默认是 8x8 字体,暂时还没办法改!
from machine import I2C,Pin
from ssd1306 import SSD1306_I2C
import time
i2c = I2C(scl = Pin(4),sda = Pin(5),freq = 10000) #软件I2C
oled = SSD1306_I2C(128, 64, i2c) #创建oled对象
oled.rect(0,0,127,63,1)
oled.show()
oled.text("Hello World!",15,25)
oled.show()
time.sleep(1)  
oled.fill(0)    # clear
oled.show()
### OLED 直插 GPIO16开始的4个脚
from machine import I2C,Pin
from ssd1306 import SSD1306_I2C
import time
p16 = Pin(16, Pin.OUT)   # OLED Vcc
p16.value(1)  
p5 = Pin(5, Pin.OUT)     # OLED Gnd
p5.value(0)   
i2c = I2C(scl = Pin(4),sda = Pin(0))   #软件I2C
oled = SSD1306_I2C(128, 64, i2c)     #创建oled对象
oled.rect(0,0,127,63,1)
oled.show()
oled.text("Hello World!",15,30)
oled.show()

?能不接线就不接嘛,条件是买 NodeMCU 要买没有焊排针的,自己焊排母。这样就有一些 UNO 的便利了。

?

?

# OLED + AHT10  胶水代码
from machine import Pin, I2C
from ssd1306 import SSD1306_I2C
import ahtx0
import utime
import time
i2c = I2C(scl=Pin(4), sda=Pin(5))
print('I2C devices',i2c.scan())
sensor = ahtx0.AHT10(i2c)
oled = SSD1306_I2C(128, 64, i2c) 
while True:
    tmp = int(sensor.temperature * 100)/100
    hum = int(sensor.relative_humidity * 100)/100
    print("\nTemperature: %0.2f C" % tmp)
    oled.invert(1)  # 有这一行全屏反白显示,注释掉取消反白
    print("Humidity:    %0.2f %%" % hum)  
    oled.fill(0)    # clear
    oled.show()
    oled.text(str(tmp),15,10)  # 浮点转字符串str()
    oled.text(str(hum),15,40)
    oled.show()    
    utime.sleep(5)

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-03-17 22:06:24  更:2022-03-17 22:07:07 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:02:02-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码