You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
561 B
36 lines
561 B
// TestSerial
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
}
|
|
int16_t v16s; uint16_t v16; uint8_t v8;
|
|
void loop() {
|
|
Serial.println("Test TerSer");
|
|
v8= 19; Serial.println(v8,BIN);
|
|
v16= 1000; Serial.println(v16,HEX);
|
|
v16s= 0; Serial.println(v16s);
|
|
v16s= 5; Serial.println(v16s);
|
|
v16s= 23124; Serial.println(v16s);
|
|
v16s= -200; Serial.println(v16s);
|
|
v16= 200; Serial.println(v16);
|
|
|
|
for(;;);
|
|
}
|
|
|
|
/*
|
|
PrintArdui vide 1426b 184v 1966b 205v
|
|
0
|
|
5
|
|
23124
|
|
-200
|
|
200
|
|
|
|
*/
|
|
|
|
/*
|
|
Test Serial.h 1970b 204v Empty 1426b 184v +544b +20v
|
|
7F127127
|
|
81129-127
|
|
FF255-1
|
|
|
|
*/
|