这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录 前一修订版 后一修订版 | 前一修订版 | ||
m:ws:ws2 [2015/11/07 13:17] admin |
m:ws:ws2 [2015/11/19 16:59] (当前版本) gdw |
||
---|---|---|---|
行 1: | 行 1: | ||
- | ====== Workshop 2 ====== | + | ====== WORKSHOP 2 ====== |
- | 学习如何使用Arduino的串口通信 | + | [[m:sk:mcu:arduino:serial|如何使用Arduino的串口通信]] |
- | ''#include <stdio.h> | + | Arduino 数字端口输入 |
+ | * 焊接一个按键 | ||
+ | * 通过上拉电阻的方式连到Arduino的DIO上去 | ||
+ | * 通过Arduino获得按键事件(Keydown, ) | ||
- | String inputString = ""; // a string to hold incoming data | + | ---- |
- | boolean stringComplete = false; // whether the string is complete | + | |
- | void setup() { | + | Arduino 模拟端口输出 - PWM |
- | // initialize serial: | + | |
- | Serial.begin(9600); | + | |
- | // reserve 200 bytes for the inputString: | + | |
- | inputString.reserve(200); | + | |
- | } | + | |
- | void loop() { | + | 用PWM波来控制一个灯的亮度 |
- | //serialEvent(); //call the function | + | * 了解能量与功率的关系 |
- | // print the string when a newline arrives: | + | * 了解怎么通过PWM波来控制功率 |
- | int num = 0; | + | |
- | if (stringComplete) { | + | |
- | Serial.println(inputString); | + | |
- | sscanf(inputString.c_str(), "R%d",&num); | + | |
- | Serial.println(num); | + | |
- | // clear the string: | + | |
- | inputString = ""; | + | |
- | stringComplete = false; | + | |
- | } | + | |
- | } | + | |
- | /* | + | 使用RGB三色灯来实现各种颜色 |
- | SerialEvent occurs whenever a new data comes in the | + | * 了解RGB色彩空间 |
- | hardware serial RX. This routine is run between each | + | * 通过调色板来抓取颜色,并且显示到LED上去 |
- | time loop() runs, so using delay inside loop can delay | + | |
- | response. Multiple bytes of data may be available. | + | |
- | */ | + | |
- | void serialEvent() { | + | |
- | while (Serial.available()) { | + | |
- | // get the new byte: | + | |
- | char inChar = (char)Serial.read(); | + | |
- | // add it to the inputString: | + | |
- | inputString += inChar; | + | |
- | // if the incoming character is a newline, set a flag | + | |
- | // so the main loop can do something about it: | + | |
- | if (inChar == '\n') { | + | |
- | stringComplete = true; | + | |
- | } | + | |
- | } | + | |
- | }'' | + |