查看“仪表盘”的源代码
←
仪表盘
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{{Language |Dashboard}} {| style="width: 800px;" |- | ==目的== 本教程将教大家如何用processing实现一个仪表盘显示Microduino感应的磁场变化。 ==设备== *'''[[Microduino-Core/zh]]''' *'''[[Microduino-USBTTL/zh]]''' *'''[[Microduino-10DOF/zh]]''' *其他硬件设备 **USB数据连接线 一根 ==原理图== 直接使用Microduino-10DOF上的HMC5883L磁场强度传感器 ==程序== [https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_Processing/MicroduinoDashboard MicroduinoDashboard] [https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_Processing/ProcessingDashboard ProcessingDashboard] ==调试== 步骤一:按着原理图搭建硬件环境,像这样: [[File:processingDashboardConnectionDiagram.jpg|600px|center|thumb]] 下载这个HMC5883L的库函数:[https://github.com/manifestinteractive/arduino/tree/master/Libraries/HMC5883L HMC5883L] 步骤二:解释一下代码: 本例需要两端的代码,Processing端和Microduino端 Microduino: 在setup()中主要是初始化HMC5883L 在loop()中计算出周围磁感应的角度 //Output()用来输出计算出的角度到串口 // Output the data down the serial port. void Output(int RoundDegreeInt) { //Serial.println(); Serial.println(RoundDegreeInt); delay(150); } Processing: //得到第一个串口的数据. myPort = new Serial(this, Serial.list()[0], 9600); //drawCube()中的以下代码用来的到串口的数据 while (myPort.available() > 0) { myString = myPort.readStringUntil(lf); if (myString != null) { //print(myString); // Prints String angle=float(myString); // Converts and prints float println(angle); } } 函数说明: //绘制仪表盘的中心点 buildpoint() //绘制仪表盘和指针刻度 builddashboard() //接收串口数据并绘制中心点 drawCube() //绘制整体的仪表盘 drawCube1() 步骤三:下载代码并编译通过。 步骤四:运行后,用一块磁铁改变一下磁场,看看指针是否变化。 ==结果== 屏幕上会显示一个指南针,指针会随着磁场走,像这样: [[File:processingDashboardResult.jpg|600px|center|thumb]] ==视频== |}
该页面使用的模板:
模板:Language
(
查看源代码
)
模板:Nmbox
(
查看源代码
)
返回至
仪表盘
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息