v12345vtm

ebike hack 18kmh

Mar 30th, 2017
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. void setup() {
  2. // ebike pedal assistand hack
  3. pinMode(13, OUTPUT); //buzzer
  4. }
  5.  
  6. void loop() {
  7. // 18km/h
  8. digitalWrite(13, HIGH);
  9. delay(75);
  10. digitalWrite(13, LOW);
  11. delay(200);
  12. }
Add Comment
Please, Sign In to add comment