Lê Nguyễn Hoàng Nhân
Results
1
issues of
Lê Nguyễn Hoàng Nhân
In Arduino.h header file, there are these macro ```cpp #define min(a,b) ((a)(b)?(a):(b)) #define abs(x) ((x)>0?(x):-(x)) #define constrain(amt,low,high) ((amt)(high)?(high):(amt))) #define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5)) #define sq(x) ((x)*(x)) ``` When using these macros with...
bug