mirror of
https://github.com/esp8266/Arduino.git
synced 2025-10-18 09:50:40 +03:00
printInteger() & co now take longs instead of ints.
This commit is contained in:
@@ -73,10 +73,10 @@ void printMode(int);
|
||||
void printByte(unsigned char c);
|
||||
void printNewline();
|
||||
void printString(char *s);
|
||||
void printInteger(int n);
|
||||
void printHex(unsigned int n);
|
||||
void printOctal(unsigned int n);
|
||||
void printBinary(unsigned int n);
|
||||
void printInteger(long n);
|
||||
void printHex(unsigned long n);
|
||||
void printOctal(unsigned long n);
|
||||
void printBinary(unsigned long n);
|
||||
|
||||
unsigned long millis(void);
|
||||
void delay(unsigned long);
|
||||
|
Reference in New Issue
Block a user