前言开发板支持图形化积木编程,也支持Python脚本编程。相关的功能,传感器等都已经封装为接口,直接调用即可。本此体验一个温湿度计的实现。 过程双击打开IDE
添加传感器板
可以看到对应传感器支持的功能
如果要显示温度
只需要先创建显示积木
再将温度拖动到替换hello world
可以看到对应的代码如下
从上知道如何进行相应的功能添加后,我们就可以编写温湿度计代码如下
- import tqmain
- import tqs1
- import os
-
- global wd
- global sd
-
- tqs1.temphum_init()
-
- while True:
- wd = tqs1.temphum_get_value(0)
- sd = tqs1.temphum_get_value(1)
- tqmain.matri_string_display("T")
- os.sleep(int(2))
- tqmain.matri_string_display(wd)
- tqmain.matri_string_display("H")
- os.sleep(int(2))
- tqmain.matri_string_display(sd)
- tqmain.matri_fill_display(901119,1019400)
- os.sleep(int(2))
- pass
按如下添加代码
点击上传即可看到效果
也可参考如下地址
https://www.yuque.com/books/share/21f24350-b371-41d4-9427-2ab6499877d7/xcv2tp
知道各个传感器的接口。
效果见视频
总结各传感器模块接口已经封装好,开发十分快速便捷。可以直接通过积木去查看,也可参考wiki中的说明了解各个模块功能。