FAQ
Common questions
Do I need to know how to code to get started?
Not really. Arduino sketches are closer to structured recipes than programming. Starter kit tutorials walk you through copy-paste-run, and you'll pick up the logic by modifying examples. Real coding skills become useful around month 2-3, once you want to build something original instead of following a tutorial.
Is leaded solder safe to use at home?
Yes, with basic precautions: open a window, don't eat while soldering, and wash your hands after. The flux fumes are more irritating than the lead vapor at normal soldering temperatures. Most hobbyists use 63/37 leaded solder for bench work because it flows better. Lead-free solder exists but requires higher temperatures and is harder for beginners.
What's the difference between Arduino and Raspberry Pi?
Arduino is a microcontroller — it runs one program in a loop, controlling pins and sensors in real time. It's perfect for hardware projects. Raspberry Pi is a full Linux computer — great for software projects that happen to have hardware attached. For blinking LEDs, reading sensors, and controlling motors, start with Arduino.
Are Arduino clone boards (Elegoo, etc.) as good as the official Arduino?
Close enough that it won't matter for a year. Clones run identical code, use the same pins, and work with every library. The differences are in build quality (marginal) and the chip brand. You won't notice the difference as a beginner — and the $35 Elegoo kit includes $30 worth of components the official board doesn't.
How much does it actually cost to start?
Around $65-70 covers everything: the Elegoo starter kit ($35), a Pinecil iron ($25), and a spool of solder ($10). Add a $20 multimeter and you're fully equipped for everything in your first six months. The components inside the starter kit stretch even further — most tutorials use what's already in the box.
What can I realistically build in my first month?
LED blinker (hour 1), traffic light circuit, temperature display with LCD screen, servo-controlled arm, alarm with a buzzer and button, and a light sensor that triggers an LED — all from the Elegoo tutorials. Your first month is tutorial-following, not original design, and that's exactly right. Original projects come after you've absorbed the patterns.