Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int pin_VIBRATOR = 5;
- void setup() {
- pinMode(pin_VIBRATOR, OUTPUT);
- }
- void loop() {
- digitalWrite(pin_VIBRATOR,HIGH);
- delay(500);
- digitalWrite(pin_VIBRATOR,LOW);
- delay(500);
- }
RAW Paste Data