本文整理汇总了C++中InternetButton::allButtonsOff方法的典型用法代码示例。如果您正苦于以下问题:C++ InternetButton::allButtonsOff方法的具体用法?C++ InternetButton::allButtonsOff怎么用?C++ InternetButton::allButtonsOff使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类InternetButton
的用法示例。
在下文中一共展示了InternetButton::allButtonsOff方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: loop
void loop(){
// If this calls for a full spectrum situation, let's go rainbow!
if(b.allButtonsOn()) {
// Publish the event "allbuttons" for other services like IFTTT to use
Spark.publish("allbuttons",NULL, 60, PRIVATE);
b.rainbow(5);
rainbow_mode = true;
// If all buttons are on, don't try to process
// the individual button responses below. Just return.
return;
}
// If we are not in rainbow mode anymore, turn the LEDs off
if (rainbow_mode == true) {
b.allLedsOff();
rainbow_mode = false;
}
// Process individual buttons and LED response
if (b.buttonOn(1)) {
b.ledOn(12, 255, 0, 0); // Red
// Publish the event "button1" for other services like IFTTT to use
Spark.publish("button1",NULL, 60, PRIVATE);
delay(500);
}
else {
b.ledOn(12, 0, 0, 0);
}
if (b.buttonOn(2)) {
b.ledOn(3, 0, 255, 0); // Green
// Publish the event "button2" for other services like IFTTT to use
Spark.publish("button2",NULL, 60, PRIVATE);
delay(500);
}
else {
b.ledOn(3, 0, 0, 0);
}
if (b.buttonOn(3)) {
b.ledOn(6, 0, 0, 255); // Blue
// Publish the event "button3" for other services like IFTTT to use
Spark.publish("button3",NULL, 60, PRIVATE);
delay(500);
}
else {
b.ledOn(6, 0, 0, 0);
}
if (b.buttonOn(4)) {
b.ledOn(9, 255, 0, 255); // Magenta
// Publish the event "button4" for other services like IFTTT to use
Spark.publish("button4",NULL, 60, PRIVATE);
delay(500);
}
else {
b.ledOn(9, 0, 0, 0);
}
if(b.allButtonsOff()) {
// Do something here when all buttons are off
}
}