Minor changes to rdf and a low res mode for video.

This commit is contained in:
2018-08-10 13:03:08 -07:00
parent c3a98cc0a7
commit 12ed32ef54
9 changed files with 276 additions and 27 deletions

View File

@@ -0,0 +1,15 @@
float freq = 1.5;
int pin = 13;
// convert freq to mills
float mills = (1/freq)*1000;
void setup(){
pinMode(pin, OUTPUT);
}
void loop(){
digitalWrite(pin,LOW);
delay(mills);
digitalWrite(pin, HIGH);
delay(mills);
}