code to control a car with microcontroller ht12e and HT12D.?
If it's arduino, you can take the c++ of the arduino.
Embedded c / Arduino language itself
Basically, Arduino is an: 1. IDE(absolutely useless imho) 2. Branded prototyping boards 3. Set of APIs for fast and easy prototyping 4. huge ecosystem of libraries In its heart it's APIs and libs (most of them use arduino APIs, but also there some that don't and may be used anywhere). Main benefit of using it is a concise code for simple common cases and most probably already existing lib for your usecase. Back to the question. If you totally sure that you need arduino (need those api and libs), then you have two options: C or C++. I suggest you to use C++, since all the APIs and most of libs are in C++. You may be fine with C if the lib code you need is designed to be used from C, but it's not the case mostly. If you're not sure whether you need arduino, there're two more options: elua and microypython. Very friendly for prototyping and much easier if you don't know C/C++.
Обсуждают сегодня