M
- My class/reference won't work in the sketch
A very frequent error for Arduino users occurs when a sketch defines a class, struct or typedef and uses it as a parameter to a ... - My custom library won't work, It says: X was not declared in this scope
This error is probably near the top of the list for most common problems, it is quite generic as there are many ways to trigger ... - Mixing malloc and new
When people talk about avoiding mixing new/delete with malloc()/free() they are right in doing so. They refer to creating an object with new for instance, then destroy the memory using free(); This ...