Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'arduino'

2049179 - arduinohardsomtimes: arduino martian
  1. #include <Servo.h>
  2. Servo servoL;
  3. Servo servoR;
  4. void setup()
  5. {
  6. // Start all pins low / disable pull-ups.
  7. digitalWrite(6, LOW);
  8. digitalWrite(7, LOW);
  9.  
2049177 - arduinohardsomtimes: arduino martian
  1. #include <Servo.h>
  2. Servo servoL;
  3. Servo servoR;
  4. void setup()
  5. {
  6. // Start all pins low / disable pull-ups.
  7. digitalWrite(6, LOW);
  8. digitalWrite(7, LOW);
  9.  
1895153 - Arduino Rulet: arduino sketch
  1. /*
  2.   Digital Rulet
  3.  
  4.     LEFT       RIGHT
  5.       3          3
  6.      ---        ---
  7.   1 | 4 | 6  1 | 4 | 6
  8.      ---        ---
  9.  
1711225 - Arduino example: arduino
  1. /* Christmas 2009
  2.  * (C) Datagutt
  3.  *
  4.  * Gets you in the christmas mood
  5.  *
  6.  *
  7.  *
  8.  *
  9.  
1497845 - Arduino Clock: arduino sketch
  1. int inPin = 3;
  2.  
  3. void setup()
  4. {
  5.   pinMode(inPin,INPUT);
  6.   Serial.begin(57600);
  7.   //delay(1500);
  8.   while(Serial.available() == false){
  9.  
1482764 - arduino.py diff: arduino emc2 cnc
  1. Index: project/reprap/arduino_emc-hal/arduino.py
  2. ===================================================================
  3. --- a/project/reprap/arduino_emc-hal/arduino.py
  4. +++ b/project/reprap/arduino_emc-hal/arduino.py
  5. @@ -20,4 +20,10 @@
  6.  import sys
  7.  import time
  8. +
  9.  
667911 - GyroLED: arduino
  1. /*
  2. * GyroLED
  3. * by Travis A. Rosenbaum
  4. *
  5. * Animates a 7-segment LED display based on accelerometer sensors.
  6. */
  7.  
  8. int timer = 100;                  // The higher the number, the slower the timing.
  9.  
fantasy-obligation