2381|1

156

帖子

1

TA的资源

一粒金砂(中级)

楼主
 

【pyboardCN V2】驱动OLED与DHT11 [复制链接]

     参考了其他使用pyb大佬们的OLED和DHT11例程来改,对于我这种micropython基础不深的初学者来说还真的是挺有帮助的。代码如下:
程序代码.zip (3 KB, 下载次数: 11)
from pyb import LED  #add LED
import DHTsensor
import ssd1306
import machine
import time

from machine import Pin
from machine import I2C
from machine import SPI


# construct an SPI bus on the given pins
# polarity is the idle state of SCK
# phase=0 means sample on the first edge of SCK, phase=1 means the second

#                                  OLED
#Pin(14)--SCK  machine.Pin("B13")  --D0
#Pin(13)--MOSI machine.Pin("B15")  --D1
#Pin(12)--MISO machine.Pin("B14")  //没用上
#Pin(16)--CS   machine.Pin("B0 ")  --CS
#Pin(4)--RES   machine.Pin("B10")  --RES
#Pin(5)--DC    machine.Pin("B11")  --DC


spi=SPI(
baudrate=10000000,
polarity=1,
phase=0,
sck=machine.Pin("B13"),
mosi=machine.Pin("B15"),
miso=machine.Pin("B14"))

display=ssd1306.SSD1306_SPI(
128,
64,
spi,
machine.Pin("B11"),
machine.Pin("B10"),
machine.Pin("B0"))

led_blue = LED(4)
led_blue.on()

dht = DHTsensor.DHT11(Pin("B12"))

#try:
display.poweron()
display.init_display()
display.text("pyb dht11",1,1)
display.text("donatello1996",1,16)
display.text("temp:",1,32)
display.text("humi:",1,48)
display.show()

while True:
  dht.measure()
  display.text(str(dht.temperature()),40,32)
  display.text(str(dht.humidity()),40,48)
  display.show()







最新回复

不错,继续努力 ,回头有空我也搞一搞micropython,有空得多向你请教^_^  详情 回复 发表于 2018-9-10 08:37

赞赏

1

查看全部赞赏

点赞 关注(2)
 
 

回复
举报

1368

帖子

6

TA的资源

版主

沙发
 
不错,继续努力 ,回头有空我也搞一搞micropython,有空得多向你请教^_^
个人签名专注智能产品的研究与开发,专注于电子电路的生产与制造……QQ:2912615383,电子爱好者群: void
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表