/**
* LAB 01 - 아두이노 기초 (Debugging)
*/
int i = 0;
void setup() {
// put your setup code here, to run once:
// 현 시뮬레이터에서는 Boradrate 는 무관함.
// 실제 프로젝트에서는 9600 사용.
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print("Hello World! - ");
Serial.println(i);
i += 1;
delay(500);
}