DearLeaderJohn
New Member
Anyone into electronics as a hobby? I've just ordered an arduino uno r3, and I'm interested to see what others round here use and make!
That's why the Arduino platform is great, you can pick up an Arduino board for around £7 and add your own components. Programming is done in C or C++ and it's fairly quick to graspI've always loved tearing electronics apart and reusing old electronics etc., and figuring how they work. I've always had time and money as the limiting factor for building on this hobby.
They still sell this at RadioShack. Various sizes. And now various kits.As a kid, yes. It was a hobby that I wish stuck with me. Basic things like the school project where you use a D battery to create a switch to power a lightbulb, that was fun. I remember as a youngster getting a gift for Christmas that I spent so much time with, I wish I remembered what it was called as i'd probably enjoy it today too, haha. Essentially was a big board with springs all over it, and you'd connect wires to different areas to do different things.
The Pi's and Arduino sure are active with electronics projects.
I never got into electronics due to the cost when you break something and lack of role models/teachers with related experience.
Closest I get is my random solar projects, related power, battery pack building, some DC sensors. Most of what I do is off the Asian shelf repurposing of things --- often using things for purposes other than what were originally intended for.
*Maandude goes to Radioshack and buys one*They still sell this at RadioShack. Various sizes. And now various kits.
What are they called? I had one when I was, I don't know, 6 or 7. 8 at the oldest. I just remember making it chirp, light this thing up, light that thing up, etc.They still sell this at RadioShack. Various sizes. And now various kits.
Well my Arduino arrived today and I've started messing around with it. It's a single-board microcontroller.So... um....
what are they? I never had one of those before. But I did have a breadboard with wires, light bulbs, resistors, batteries, clock, etc. Made a stop light system a long time ago.
/*
Fade
This example shows how to fade an LED on pin 9 using the analogWrite() function.
*/
int led = 9; // the pin that the LED is attached to
int brightness = 0; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by
void setup() {
// put your setup code here, to run once:
// declare pin 9 as an output;
pinMode(led, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
// set the brightness of pin 9;
analogWrite(led, brightness);
// change the brightness for next time through the loop:
brightness = brightness + fadeAmount;
// reverse the direction of the fading at the ends of the fade;
if (brightness == 0 || brightness == 255) {
fadeAmount = -fadeAmount;
}
//wait for 30 milliseconds to see the dimming effect
delay(30);
}
I had that exact one! It was great but I ended up getting sick of it as I already knew how to solder at that time and who can beat circuits made from the leads of other components at that age?
Out of curiosity, where did you buy all of your goodies from? Since we're both in the UK. ;-)Anyone into electronics as a hobby? I've just ordered an arduino uno r3, and I'm interested to see what others round here use and make!
Well I got a starter kit so I could do the basic tutorials, cheapest place in the UK is on ebay. So I ordered:Out of curiosity, where did you buy all of your goodies from? Since we're both in the UK. ;-)
You wont regret it! Been having a blast with mine today but giving it a rest for now before my brain overheatsJust bought one