this post was submitted on 30 Aug 2024
5 points (100.0% liked)
microcontrollers
72 readers
3 users here now
Welcome to microcontrollers
Related communities:
- c/embedded
- c/cprogramming
- c/askelectronics
- c/fpga
- c/chipdesign
- c/microcontrollers
- c/dsp
- c/rtlsdr
- c/raspberry_pi
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I would suggest getting a raspberry pi zero or zero 2 and using CircuitPython or MicroPython. Adafruit has some really great documentation.
A normal Raspberry Pi (1,2,3,4,5 A/B) is actually a full PC and not a microcontroller. They run ARM chips just like your cell phone. The only special thing about them is they expose some I/O pins. Otherwise you program on them just like a normal linux PC.
Arduino and the Raspberry Pi Zero are true microcontrollers. They don't have operating systems and only run the code you load onto them. At this point you would choose Arduino if you want to use Arduino C and the extensive library of modules available, and you would choose a Pi Zero if you want to use Circuit or Micro Python. There are other hobby grade microcontrollers and other pros and cons but I think at the beginner level that's the core distinction.
MicroPython is a from-scratch re-implementation of the python interpreter for microcontrollers. CircuitPython is a fork made by Adafruit designed to be a little easier for students.