constrain
This commit is contained in:
parent
e31356aeeb
commit
6bff550993
@ -12,6 +12,8 @@ int analogRead(int pin);
|
||||
void digitalWrite(int pin, int level);
|
||||
void analogWrite(int pin, int dc);
|
||||
|
||||
#define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
|
||||
|
||||
class serial_c{
|
||||
public:
|
||||
void begin(int br);
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit ce0b434e97b67f3418c473741f55fd31ef20684b
|
||||
Subproject commit c54363fde2edebb39355ba264c1b85dd2258bef4
|
Loading…
x
Reference in New Issue
Block a user