This file contains hidden or 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
// must be a PWM on the Arduino Board | |
#define led 5 | |
int voltage = 0; | |
void setup() { | |
pinMode(led, OUTPUT); | |
} | |
void turnOn() { |
NewerOlder