- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,我现在有一个半完整的 Arduino 草图。基本上,如果一串字符等于 *{blink_Flow_A}*,下面的草图将使 kegboard-mini 扩展板上的 LED 闪烁,但是,在 Arduino 上加载当前草图时,LED 仅闪烁一次。我希望 Arduino 反复闪烁,直到“停止”命令发送到 Arduino。我最终想打开一个阀门,保持打开状态,直到阀门收到关闭命令,然后关闭阀门。草图如下所示,
/*
* kegboard-serial-simple-blink07
* This code is public domain
*
* This sketch sends a receives a multibyte String from the iPhone
* and performs functions on it.
*
* Examples:
* http://arduino.cc/en/Tutorial/SerialEvent
* http://arduino.cc/en/Serial/read
*/
// global variables should be identified with _
// flow_A LED
int led = 4;
// relay_A
const int RELAY_A = A0;
// variables from sketch example
String inputString = ""; // a string to hold incoming data
boolean stringComplete = false; // whether the string is complete
void setup() {
Serial.begin(2400); // open serial port, sets data rate to 2400bps
Serial.println("Power on test");
inputString.reserve(200);
pinMode(RELAY_A, OUTPUT);
}
void open_valve() {
digitalWrite(RELAY_A, HIGH); // turn RELAY_A on
}
void close_valve() {
digitalWrite(RELAY_A, LOW); // turn RELAY_A off
}
void flow_A_blink() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for one second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
void flow_A_blink_stop() {
digitalWrite(led, LOW);
}
void loop() {
// print the string when newline arrives:
if (stringComplete) {
Serial.println(inputString);
// clear the string:
inputString = "";
stringComplete = false;
}
if (inputString == "{blink_Flow_A}") {
flow_A_blink();
}
}
//SerialEvent occurs whenever a new data comes in the
//hardware serial RX. This routine is run between each
//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;
}
}
}
如果这有什么不同的话,IRC 上有人告诉我研究状态机挠头
最佳答案
要使 Led 闪烁而不阻塞程序,我建议您使用计时器(和 TimerOne library )。我制作了一个快速示例代码:
#include "TimerOne.h" //Include the librart, follow the previous link to download and install.
int LED = 4;
const int RELAY_A = A0;
boolean ledOn;
void setup()
{
pinMode(LED, OUTPUT)
Timer1.initialise(500000) // Initialise timer1 with a 1/2 second (500000µs) period
ledOn = false;
}
void blinkCallback() // Callback function call every 1/2 second when attached to the timer
{
if(ledOn){
digitalWrite(LED,LOW);
ledOn = false;
}
else{
digitalWrite(LED,HIGH);
ledOn = true;
}
}
void open_valve() {
digitalWrite(RELAY_A, HIGH); // turn RELAY_A on
}
void close_valve() {
digitalWrite(RELAY_A, LOW); // turn RELAY_A off
}
void serialEvent() {
while(Serial.available()) {
char inChar = (char)Serial.read();
inputString += inChar;
if (inChar == '\n') {
stringComplete = true;
}
}
}
void loop()
{
// print the string when newline arrives:
if (stringComplete) {
Serial.println(inputString);
// clear the string:
inputString = "";
stringComplete = false;
}
if (inputString == "{blink_Flow_A}") {
Timer1.attachInterupt(blinkCallback); //Start blinking
}
if (inputString == "{stop}") {
Timer1.detachInterrupt(); //Stop blinking
}
if (inputString == "{open_valve}") {
open_valve();
}
if (inputString == "{close_valve}") {
close_valve();
}
}
注意:
考虑放置标签“c”或“java”以在代码上进行语法突出显示。
关于c - 响应某些命令的 Sketch 是如何完成的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16532586/
如何调整箭头大小,而不是粗细 enter image description here 最佳答案 很遗憾,没有具体的设置。 我建议您使用一条线和一个元素(例如三角形)来获得与可控尺寸相同的效果。您还可
如何在 Sketch 中减去矢量路径。形状很简单,文字也可以。附加图像中的白线需要穿过矩形。建议? 最佳答案 您需要先将矢量路径转换为轮廓。 选择带有轮廓的所需元素 在菜单内选择:Layer > Co
素描字体在PT中设置 现在我想使用 bootstrap 4 编写一个网络应用程序。所以我习惯使用 pixels/em/rem 来表示字体和距离。我使用 PT 看不到值。积分似乎是针对打印媒体的 那么将
我试图了解 AMS sketch 和 Count Sketch 算法之间的区别。我的理解是他们的目标/输出都是返回一个草图,这是一个频率向量。它包含经过的 Steam 中元素的频率。两者有什么区别?
开发草图插件,该插件可以基于用户身份验证从插图托管平台获取/收集数据。 我正在使用 SKPM with sketch-module-web-view . 目前,我们有针对该网站的 Google 和 F
我创建了一个文本图层,默认情况下它的宽度只是对内容的响应,但是现在,我调整了它的宽度或它所属的组的大小,然后它的宽度将像下面一样增长。 现在,我必须手动减小其宽度。 我怎样才能让它减少它的宽度以自动响
我是素描新手。在草图中设计了一个图标后,我想将其导出为 PNG。图标是用多条路径绘制并组合在一起的。但是当我导出它时,导出的图像中有阴影。我不要影子有没有办法摆脱它? 最佳答案 你可以试试icongr
我正在开发一个应用程序,它可以让用户通过手指触摸在屏幕上“绘画”——所以基本上用户可以写、画形状——类似于白板。 问题是,就 iphone 图形编程而言,我是一个新手,如果这里的社区提供一些示例代码链
我正在尝试构建我的第一个 Sketch 插件,该插件首先向页面添加新的画板。 Sketch插件使用JSTalk ,并在Bohemian Coding documentation中它指出画板是一种图层,
所以我似乎找不到改变画板背景颜色的方法。 This is what i have currently just missing the method to set the color. var doc
我的processing.js 草图有一个 size() 调用,该调用取决于在获取 div 大小时加载的窗口。 50% 的情况下,草图会在 CSS 启动之前加载,因此草图的大小不正确。我认为解决这个问
好吧,我现在有一个半完整的 Arduino 草图。基本上,如果一串字符等于 *{blink_Flow_A}*,下面的草图将使 kegboard-mini 扩展板上的 LED 闪烁,但是,在 Ardui
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-top
我有一个简单的 SVG,我画的是 Sketch 2。 形状是一个简单的倾斜矩形,从上到下具有线性渐变。顶部为白色,不透明度为 75%,底部也是白色,不透明度为 0%。 我在上面的示例中添加了灰色背景,
我是一名练习处理的新手程序员,最近开发了一个使用 Twitter4j 的草图。当我从处理开发环境中以 Java 模式运行草图时,它运行得很好。此外,当我从 Java 模式导出草图时,生成的应用程序运行
我目前正在开发一个自动跳棋盘。我使用三个类在 C++ 中对其进行了编码,然后进行了必要的更改以将其用作 Arduino 上的库。C++ 代码分为三个类,它们为棋盘的位置启动一个 8 x 8 数组,并跟
工作: http://jsfiddle.net/3rxvnrLp/1/ 新: http://jsfiddle.net/g3sTL/229/ 检查工作 fiddle 。如果您按住左键并开始拖动鼠标,画笔
我有在 test.ino 中编写的 Arduino 代码,现在我想使用 java 将其发送到 Arduino ide 上。我应该怎么办?我的 test.ino 代码如下。 void setup() {
所以我有一个 Arduino 草图,它读取串行命令(一串字符),然后让草图根据它接收到的命令执行某些操作。截至目前,我有两个命令, {open_valve} {close_valve} 当我向 Ard
我正在尝试在我的 Xcode 项目中插入启动图像。我用 Sketch 3 创建了图像并以正常、@2x 和 @3x 格式导出,我还检查了启动图像所需的尺寸 here它们匹配,但显然 XCode 不想让我
我是一名优秀的程序员,十分优秀!