Last active
October 29, 2023 15:45
-
-
Save johnwargo/e6b19e2d2b905ac7a61d061ea952e482 to your computer and use it in GitHub Desktop.
An Arduino random smoke generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define SMOKE_PIN A0 | |
#define MIN_SMOKE_TIME 1000 | |
#define MAX_SMOKE_TIME 5000 | |
void setup() { | |
// configure the output pin to control the smoke generator | |
pinMode(SMOKE_PIN, OUTPUT); | |
// Enable the Arduino device's onboard LED | |
pinMode(LED_BUILTIN, OUTPUT); | |
} | |
void loop() { | |
// turn the smoke machine on | |
digitalWrite(SMOKE_PIN, HIGH); | |
digitalWrite(LED_BUILTIN, HIGH); | |
// leave it on for a random time between MIN_SMOKE_TIME | |
// and MAX_SMOKE_TIME (in milliseconds) | |
delay((int)random(MIN_SMOKE_TIME, MAX_SMOKE_TIME)); | |
// turn the smoke machine off | |
digitalWrite(SMOKE_PIN, LOW); | |
digitalWrite(LED_BUILTIN, LOW); | |
// Wait for another random amount of time | |
delay((int)random(MIN_SMOKE_TIME, MAX_SMOKE_TIME)); | |
// Go back and do it again | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment