python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Arduino compiling error in platformio with bool readSerial(Serial& stream) -> stream not declared
I tried to compile a code in platformio (Atom) and got a compiler error.
No compiling errors for this code in the Arduino IDE.
How do I get this code work with the PlatformIO compiler?
I don't really ...
unimetal
Votes: 0
Answers: 1
How to solve undefined reference in main function?
Below is my header file , which declares the function set_params
#ifndef PID_H
#define PID_H
class PID
{
float _kp,_ki,_kd,_error,_previous_error,_dt;
public:
void set_params(float kp,...

shivank anchal
Votes: 0
Answers: 1
Convert from char to #define
In a arduino application i am working on, i need to find a #define that the application don`t really know the "name" of. I have the following defines that have been created by another applic...
Stian Blåsberg
Votes: 0
Answers: 1
Why does my code keep looping the motor function code?
Essentially as the title says the motor moving function keeps looping. And it stops printing the IR values to the serial, essentially it just keeps running the motor function.
I know this is probably ...
A7SUKO
Votes: 0
Answers: 1