unsigned long
설명
부호없는 long 변수는 숫자 저장을 위한 확장된 크기 변수이며 32비트 (4바이트)를 저장합니다. 표준 long와 달리 unsigned long은 음수를 저장하지 않으므로 그 범위는 0에서 4,294,967,295 (2 ^ 32 - 1) 까지이다.
문법
unsigned long var = val;
매개변수
- var - your long variable name
- val - the value you assign to that variable
예제 코드
unsigned long time;
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print("Time: ");
time = millis();
// 프로그램이 시작된 때부터의 시간 출력
Serial.println(time);
// 1초 기다림. 엄청난 데이터를 보내지 않도록.
delay(1000);
}
더보기
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.