Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author |
user:1234 user:me (yours) |
| Score |
score:3 (3+) score:0 (none) |
| Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections |
title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status |
closed:yes duplicate:no migrated:no wiki:no |
| Types |
is:question is:answer |
| Exclude |
-[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with arduino-yun
Search options answers only
not deleted
user 359
The Arduino Yún is a microcontroller board based on the ATmega32u4 and the Atheros AR9331. Use this tag for questions specifically regarding the Yún, and not just general Arduino usage.
2
votes
Accepted
Stop Arduino Timer after some seconds
You set a timestamp = millis() when the button is pushed and then you disable the buzzer only when millis() - timestamp > timeout
if (touchsensorState == HIGH) {
// buzzer will emit sound:
d …
3
votes
Accepted
Arduino - Push Button State Problem
you will need to implement a edge sensor. Add a previousTouchsensorState to the globals and replace the if where you check the sensor state with:
if(previousTouchsensorState == LOW && touchsensorStat …