I work with a marching band, and we want to use fog machines for a particular part of the show. I know how to code/program in Arduino, however I am not great in the electrical and technical end. I own two fog machines, and the issue is that we need them to start fogging on command without delay (at least not a long delay, just not early and not late). We cannot exactly stop the show in the middle of a competition to say "wait, the fog is coming soon." We also need them to stop fogging on command.
I have read this article, Motion Triggered Fog Machine and it seems simple enough, however, I do not need or want it to work with a motion sensor. I suppose the easiest way you could help me is to either point me to a tutorial or tell me how to modify that tutorial to my own needs.
1 Answer 1
Perhaps use a small wireless board like the NRF24L01 (available for around 1ドル each on eBay). Have one at the fogging machine, similar to the Instructable, but instead of a sensor, you turn the machine on and off when a command arrives. For example, send "0" to turn it off and "1" to turn it on. There are examples with the NRF24L01 library.
Then you have an Arduino in the wings nearby where you press a switch when you need to turn the fogging machine on (this would transmit the signal).
-
Great modules those. I have some with power amplifier and SMA antenna. I haven't found the maximum range yet, but it's certainly measured in the hundreds of meters.Majenko– Majenko2015年09月22日 12:48:23 +00:00Commented Sep 22, 2015 at 12:48
-
@Nick This is wireless also?Tommy Yamakaitis– Tommy Yamakaitis2015年09月22日 15:20:39 +00:00Commented Sep 22, 2015 at 15:20
-
Yes, they are wireless transceivers. They communicate using SPI so you would need another Arduino (or similar) to send the command. A small one (like a Mini or Micro) could fit into a small box. The transceiver is pretty small - 30 mm long and 15 mm wide.2015年09月22日 21:27:25 +00:00Commented Sep 22, 2015 at 21:27
-
@Nick So, I can use this along with the instructable by simply using this instead of the sensor. And, you're saying I would need two arduinos?Tommy Yamakaitis– Tommy Yamakaitis2015年09月23日 03:03:53 +00:00Commented Sep 23, 2015 at 3:03
-
Well not exactly "simply using this" - you would need to change the code to read from the transceiver instead of reading from the sensor. You would need an Arduino at each fog machine, and one to have with you to command the others when to turn the fog on and off.2015年09月23日 05:49:23 +00:00Commented Sep 23, 2015 at 5:49
Explore related questions
See similar questions with these tags.
we need them to start fogging on command
; Where do the commands come from. A human pressing a button? A PC running some software? DMX controller? Smartphone? Without some additional info, we can't add anything that isn't already in the instructable you mentioned.