logoalt Hacker News

KPGv2today at 3:09 AM4 repliesview on HN

Well first you have to learn the Arduino programming language. And the stdlib.


Replies

numpad0today at 6:42 AM

They don't call it C++ because that sounds too difficult. But it's literally, not like a simplified subset that compiles into an IL using a formally proven tool, but as in literally compiled using GCC as, C++.

show 1 reply
grogenauttoday at 3:46 AM

it's literally the hello world of micros. get an arduino, plug it into the usb, install the ide, new -> example -> 01. Blink. Press Run. Cool you have now blunk a led. Now use AI to draw the rest of the owl.

jfimtoday at 4:39 AM

It's C++, and basically what Arduino gives you is

  int main() {
    setup();
    for(;;) loop();
  }
As well as a GUI to easily flash devices and view the output from the serial port, as well as import libraries that do all of the hard work like say making a serial port on any microcontroller pin or control external devices like light strips or displays.

I'd assume the average user on HN should be able to figure it out pretty easily.

telotortiumtoday at 3:27 AM

Good thing LLMs exist now