查看“直流电机控制”的源代码
←
直流电机控制
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{| style="width: 800px;" |- | ==目的== 本教程将教大家如何用processing来控制直流电机的转速。 ==设备== *'''[[Microduino-Core]]''' *'''[[Microduino-FT232R]]''' *其他硬件设备 **USB数据连接线 一根 **面包板跳线 一盒 **面包板 一块 **DC电机 一个 **电位器 一个 **2.2K欧姆电阻 一个 **二极管 一个 **NPN晶体管 一个 ==原理图== [[File:processingDCMotorSchematics.jpg|600px|center|thumb]] ==程序== https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_Processing/MicroduinoDCMotorControl https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_Processing/ProcessingDCMotorControl ==调试== 步骤一:按着原理图搭建硬件环境,像这样: [[File:processingDCMotorConnectionDiagram.jpg|600px|center|thumb]] 步骤二:解释一下代码: 本例需要两端的代码,Processing端和Microduino端 Microduino: //得到串口数据,并输出值给电机 if(Serial.available())//if serial is available { leitura=Serial.read();//read serial data Serial.println(leitura); vel=map(leitura,0,255,0,1023);//map if(leitura>0)//run motor by leitura { analogWrite(motorPin,vel); delay(1); } else//stop motor { analogWrite(motorPin,LOW); } } Processing: //列出所有串口列表,得到第一个串口的数据 // List all the available serial ports in the output pane. // You will need to choose the port that the Wiring board is // connected to from this list. The first port in the list is // port #0 and the third port in the list is port #2. println(Serial.list()); // Open the port that the Wiring board is connected to (in this case #0) // Make sure to open the port at the same speed Wiring is using (9600bps) port = new Serial(this, Serial.list()[0], 9600); //绘制更新 void draw() { background(0); update(mouseX/10); println(mouseX); } //串口输出鼠标x坐标值,并绘制当前值 void update(int x) { port.write(x); stroke(255); line(mouseX, 0, mouseX, 160); text (mouseX, mouseX, 180); } 步骤三:下载代码并编译通过。 步骤四:运行后,在processing中左右移动鼠标,看电机的转速变化。 ==结果== 屏幕上会显示一个简单的速度指示剂,跟着你的鼠标x轴变化,电机的转速也随之变化。 [[File:processingDCMotorResult.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
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息