Hello All!
I'm new to programming and was wondering where i should start?
What's a good hands on project that will help me get up and running? Doesn't just have to be micro:bit.
Thank you in advance!
Nate
Hello All!
I'm new to programming and was wondering where i should start?
What's a good hands on project that will help me get up and running? Doesn't just have to be micro:bit.
Thank you in advance!
Nate
Welcome to the element14 community! Figuring out which platform (micro:bit, ardunio, raspberryPi) that fits your budget and potential projects (present and future) is a good starting point (great advice from Fred27 and dougw ). Learning how to program is best achieved by practice and repeat. Chose a platform and then build a simple project, say something like a blinking LED. Then ask, "what else can I do", make some changes, like change the blink rate, or try making it blink in a different way, using a different command type, etc. Play around a bit, look at other simple projects and see if there are ideas that you can bring to your current project. Programming is an exercise in extreme flexibility, there are so many little changes that you can do, or even different ways to the same thing. Don't be in a hurry to leave the first project behind. And when you do, ease up on the complexity curve a little bit, like add some more LEDs and make them blink in a pattern or sequence, as this will allow you to start adding more logic (if/then/while/do). But of all things, have fun! We learn as much from or successes as we do from our failures.
Nate,
My favorite is C. This language, while a bit older (early 70s), it led to the development of several of the more recent favorites (java, python and c++). Platform will also have some bearing on your language choice. The Ardunio IDE uses a slight twist on the vanilla flavor of C/C++. RaspberryPi can support almost all of the popular language choices. micro:bit is primarily python. All three of these platforms have a ton of books/kits/tutorials that will help you get a quick start into programming.
For a true beginner, I would suggest either Arduino (or any of the many clones) or micro:bit. To expand a bit further on this choice, your plans will any have a bearing on your choice. If you have a desire to combine electronics and programming, the Arduino is a bit more flexible. More I/O pins, more different choices in the power of your Ardunio (different processors, peripherals, etc.) make this a strong choice to use as a learning tool. Where out of the box, the micro:bit has more built in (half the size of a credit card and has an ARM Cortex-M0 processor, accelerometer and magnetometer sensors, Bluetooth and USB connectivity, a display consisting of 25 LEDs, two programmable buttons, and can be powered by either USB or an external battery pack).
To help make a choice, look around the site here, and find an interesting project (something that speaks to you) and try and to replicate that project. The more projects that you see using a common platform the better, so that you can easily move forward to next project.
Good luck!
nate.wits wrote:
>Looks like i'll go with the python language and the micro:bit.
You can start coding for micro:bit on their website without actually needing the hardware, so you can try it out without a big commitment.
If you are not comfortable with code, they give the option of programming with Blocks, which is more visual. You can then switch over to see the Javascript code, which also helps when learning Javascript.
Cheers,
-Nico
ps, I think Arduino would be a good next step when you're ready to level up, but it's a bit of a leap up from Micro:bit.
Micro:bit is easier to get started with, but Arduino is super affordable and has years of tutorials and examples you can look at so you can cut and paste code and learn from the existing examples.
But C can be very unforgiving to work with.
My favourite Arduino Getting-Started is Oomlout ARDX: ARDX – Arduino Expermentation Kit « .:oomlout:.
It is definitely a lot more complicated though.
Also, with Micro:bit you don't immediately have to jump into making connections with wires for it to do things. That is another level of complexity that can add frustration.
But, like a good puzzle, it can also be very satisfying when you get a project running
ps, I think Arduino would be a good next step when you're ready to level up, but it's a bit of a leap up from Micro:bit.
Micro:bit is easier to get started with, but Arduino is super affordable and has years of tutorials and examples you can look at so you can cut and paste code and learn from the existing examples.
But C can be very unforgiving to work with.
My favourite Arduino Getting-Started is Oomlout ARDX: ARDX – Arduino Expermentation Kit « .:oomlout:.
It is definitely a lot more complicated though.
Also, with Micro:bit you don't immediately have to jump into making connections with wires for it to do things. That is another level of complexity that can add frustration.
But, like a good puzzle, it can also be very satisfying when you get a project running