Remix.run Logo
holoduke 11 hours ago

A bit of topic , but I wonder if people who are starting in this field not directly start on esp32 platforms. It's so damn easy to develop with AI on these platforms. In the past we spend a week on lcd drivers alone. Now one can build an entire application that controls other devices via serial, has its own fancy UI, has all kind of useless features like 40 languages, its own webserver, OTA, demo modes and more. With Arduino I am not sure what you get these days

delabay 8 hours ago | parent | next [-]

I predict the AI enabled MCU development wave will lift all ships.

AI has absolutely crushed the barrier to entry for using this gear. It's a spectacular turn of events and I suspect sales have never been better, if my own behavior is any indication.

Arduino ships an STM32 which is really feature rich btw.

I really can't get over how many things in life do not require an OS but people used them anyways because it's easier to develop on.

Joel_Mckay 4 hours ago | parent [-]

>AI has absolutely crushed the barrier to entry for using this gear

Sure, now people can make more frequent dangerous assumptions with twice the overconfidence. =3

ivanjermakov 10 hours ago | parent | prev | next [-]

I just started with esp-idf because I can't stand all the bloat of Arduino/Platform.io/ESPHome. Especially now where working with unfamiliar tech stack is easier than ever.

Joel_Mckay 9 hours ago | parent [-]

The Esp FreeRTOS projects are a great little ecosystem, and will offer quite a bit more insight than Arduino pseudo-C++ silent-polled architecture.

In general, it depends what you want out of the ecosystems. For quickly setting up a proof of concept, an Arduino used to be good for the exhaustive documentation, examples, community, and labs.

The modern Arduino integrated product line is now similar to other locked ecosystems like FPGAs. It no longer lets students learn by burning out $10 parts they made. The only people having fun now are the folks building those trademarked modules.

Probably wise to avoid LLMs if you are a student, and check out the $6 Pi Pico 2 if interested in low-level firmware build processes (it also supports the old Arduino IDE if you get stuck.)

Best of luck =3

Lab:

https://learn.adafruit.com/using-raspberry-pi-pico-pico-2-wi...

Pico 2:

https://www.mouser.com/en/new/raspberry-pi/raspberry-pi-pico...

https://www.mouser.com/en/ProductDetail/Raspberry-Pi/SC1632?...

Breadboard and common components to build and blink LED lights (set everything at 3.3v to start exploring):

https://www.amazon.com/EL-CK-002-Electronic-Breadboard-Capac...

ac29 9 hours ago | parent | prev | next [-]

Yeah I did a project with ESP32 and micropython recently and getting the proof of concept up was very very quick. The agent I was using also had no problem writing drivers for peripherals that didnt already have micropython drivers (I seem to recall it ported C or Arduino reference code)

Joel_Mckay 9 hours ago | parent [-]

Pull off the C/C++ band-aid already, it will give you a clearer understanding of how these chips actually function. =3

delabay 8 hours ago | parent [-]

Not everybody has time or needs to understand how these chips function. I don't need to know how a CPU functions to write python.

bschwindHN 7 hours ago | parent [-]

Yeah how dare he suggest you improve yourself or learn more about the thing you seem to be interested in operating. I could understand if we were on a website about technology and curiosity, but this is just hacker news.

iamatworknow 4 hours ago | parent [-]

Why are you responding as if that was an attack? Not everyone needs to know every intricate detail of a system to use it. Nor should they.

That type of thinking is like saying unless you can cook a gourmet restaurant quality meal you don't deserve to eat at a gourmet restaurant. Absurd.

JKCalhoun 7 hours ago | parent | prev [-]

The first ESP32 board I worked with had some damn WiFi stack running in the background—not nearly as "bare metal" as I had come to expect from having just stepped out of the Arduino world.

(I've since learned, from an LLM, ha ha, how to turn that off if you don't need it.)

holoduke 5 hours ago | parent [-]

Well esp is wifi baked in the chip. If you want determenstic clock cycles then go for stm32. If you want easy quick setups. Like an interface for a fatbikes, washmachine, dashboard for a car, then go for esp