Arduino sketch HTML formatter

Pt 1954
Want pretty Arduino sketches to include in your blog, just like us? Well, here is a little javascript fun! Use the Tools > Copy for Forum menu selection in the Arduino IDE to put the code into your computer clipboard. Then paste it in the form here – you’ll get nice HTML just posting code on the web, it will look like this…

 
 
int fsrAnalogPin = 0; // FSR is connected to analog 0
int LEDpin = 11;      // connect Red LED to pin 11 (PWM pin)
int fsrReading;      // the analog reading from the FSR resistor divider

void setup(void) {
  Serial.begin(9600);   // We'll send debugging information via the Serial monitor
  pinMode(LEDpin, OUTPUT);
}

void loop(void) {
  fsrReading = analogRead(fsrAnalogPin);
  Serial.print("Analog reading = ");
  Serial.println(fsrReading);

  // LED gets brighter the harder you press
  analogWrite(LEDpin, fsrReading);
  
  delay(100);
}

 
Filed under: arduino — by adafruit, posted May 20, 2009 at 5:21 pm


Try Adafruit's new iPhone & iPad app for makers! Circuit Playground! "Incredibly handy for anyone working in electronics. Perfect for engineers and non-engineers alike."
Looking for engineers, makers and the builders of dreams? Try our Adafruit job boards.
Join our weekly Adafruit SHOW-AND-TELL at 9:30pm ET every Saturday night! Then at 10pm, ASK-AN-ENGINEER with Ladyada and the Adafruit team!

No Comments

No comments yet.

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.

www.flickr.com
adafruit's items Go to adafruit's photostream
www.flickr.com
items in Adafruits More in Adafruits pool