Top "Arduino" questions

ARDUINO QUESTIONS MUST BE PROGRAMMING RELATED.

python3 pySerial TypeError: unicode strings are not supported, please encode to bytes:

In Python 3 I imported the pySerial library so I could communicate with my Arduino Uno by serial commands. It worked …

python-3.x arduino pyserial
How to read a string value with a delimiter on Arduino?

I have to manage servos from a computer. So I have to send manage messages from computer to Arduino. I …

string serial-port arduino
Mapping a numeric range onto another

Math was never my strong suit in school :( int input_start = 0; // The lowest number of the range input. int input_…

c math arduino
Android + Arduino Bluetooth Data Transfer

I can get my Android app to connect via Bluetooth to my Arduino. However no data can be transmitted between …

android bluetooth arduino
How do you convert a String to a float or int?

In an Arduino program I'm working on the GPS sends the coordinates to the arduino through USB. Because of this, …

arduino
Vectors in Arduino

I am making a vector of "waypoints" on the Arduino. Each waypoint is an object. The Arduino will obviously need …

c++ vector arduino
Where are the hex files compiled by Arduino?

Where does the Arduino IDE save the binaries on Mac OS X?

arduino
Arduino (C language) parsing string with delimiter (input through serial interface)

Arduino (C language) parsing string with delimiter (input through serial interface) Didn't find the answer here :/ I want to send …

c string parsing arduino delimiter
ESP8266 WiFiClient simple HTTP GET

I'm working on simple problem of reading a webpage using ESP8266 and ESP8266WiFi library. I changed only a few …

http arduino esp8266
correct way to include .cpp and .h files in an Arduino sketch

First, the problem: main sketch file: char foo; // required to clean up some other problems #include <Arduino.h> // …

c++ include arduino header-files arduino-ide