Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

10
  • What exactly do you want to know about the Arduino, that you cant find in the tutorials? Given your supposed experience, you should be able to begin using the Arduino for projects and such; its a dev-board that can be programmed in C/C++, with libraries all over GitHub, thats about all you need to know. The indepth details about its workings can be found at the arduino.cc site. Commented Feb 6, 2016 at 13:17
  • Arduino development framework for embedded C programmers ( something like 'C++ for C programmers') Commented Feb 6, 2016 at 13:44
  • Hook up an Arduino to pc and start playing with it. IDE has examples. Commented Feb 6, 2016 at 14:28
  • That's should be fine for 'Hello world' or 'Blink LED'. I'd like get the feeling how powerful/useful it's in multi-tasking, real time response, pros & cons compared with legacy development tools, etc. Off-course I can get all these info by googling one by one. But I was curies to know if any comprehensive reading materials available which is shows Arduino in different angle for the audience like me. Commented Feb 6, 2016 at 14:45
  • 2
    If you are experienced with embedded programming, forget about the IDE and the Arduino specific libraries, they tie down an experienced user. Grab the AVR's datasheet and just use Arduino board as just another dev board, you can program it using avrdude and there is a good gcc based toolchain. Use C or C++ whatever you are used to. Commented Feb 6, 2016 at 14:56