#2,018 in Computers & technology books

Reddit mentions of Getting Started with Arduino: The Open Source Electronics Prototyping Platform (Make)

Sentiment score: 2
Reddit mentions: 3

We found 3 Reddit mentions of Getting Started with Arduino: The Open Source Electronics Prototyping Platform (Make). Here are the top ones.

Getting Started with Arduino: The Open Source Electronics Prototyping Platform (Make)
Buying options
View on Amazon.com
or
    Features:
  • Maker Media Inc
Specs:
Height8.5 Inches
Length5.5 Inches
Number of items1
Weight0.70106999316 Pounds
Width0.55 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 3 comments on Getting Started with Arduino: The Open Source Electronics Prototyping Platform (Make):

u/uptocode · 1 pointr/arduino

And heck! If you don't have an Arduino just yet, you can try one out virtually first! I like 123D Circuits by AutoDesk; however, there are many other simulators with Arduinos built in. Google them! :-)

Like it but don't like the $$$? You can make your own! There are many tutorials online for making a bare bones Arduino with cheap* electronics components.

I really like @schorhr book suggestions. To add on, the following books are great for Arduino beginners: Programming Arduino: Getting Started with Sketches & Make: Getting Started with Arduino. Also, great tutorials can be found here: tronixstuff Arduino Tutorials & Ladyada's Arduino Tutorials.

Good luck!

u/PotatoFi · 1 pointr/arduino

Given that this is my first foray into coding anything at all, ever, then some strange code is highly likely. Here's a snippet:

void confirmSetting(){
digitalWrite(greenLED, HIGH); // LEDs ON
digitalWrite(redLED, HIGH);
delay(250);
digitalWrite(greenLED, LOW); // LEDs OFF
digitalWrite(yellowLED, LOW);
digitalWrite(redLED, LOW);
delay(250);
}

I've heard that using delays is kinda sloppy... not sure how to improve that yet, mostly just learning by the examples from the Getting Started in Arduino book.