반응형
void setup(void) {
Serial.begin(115200);
Serial.println("Connected");
}
void loop(void) {
Serial.print("text : ");
Serial.print(78, BIN) gives "1001110"
Serial.print(78, OCT) gives "116"
Serial.print(78, DEC) gives "78"
Serial.print(78, HEX) gives "4E"
Serial.print(1.23456, 0) gives "1"
Serial.print(1.23456, 2) gives "1.23"
Serial.print(1.23456, 4) gives "1.2346"
Serial.print(78, OCT) gives "116"
Serial.print(78, DEC) gives "78"
Serial.print(78, HEX) gives "4E"
Serial.print(1.23456, 0) gives "1"
Serial.print(1.23456, 2) gives "1.23"
Serial.print(1.23456, 4) gives "1.2346"
Serial.write( value );
Serial.println(); // line feed
if (Serial.available() > 0) { // 수신버퍼 확인
char temp = Serial.read(); // 읽어온 것을 변수에 저장
// Serial.scan
}
}
반응형
'프로그램&회로' 카테고리의 다른 글
VL53L1 address (0) | 2024.05.16 |
---|---|
VL53L1 i2clog data (0) | 2024.05.16 |
ai관련 재미난 영상 (0) | 2024.04.24 |
VScode Insert edit (0) | 2024.04.16 |
라즈베리파이 python (0) | 2024.04.02 |