Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- parser
- nano
- 아두이노
- Server
- Raspberry Pi 3
- BLE
- ruby on rails
- RUBY
- dht11
- IOT
- JSON
- uno
- Nginx
- mqtt
- Arduino
- Raspberry Pi
- rails
- 오렌지파이
- odroid-x2
- ubuntu
- 개발환경
- java
- python3
- flask
- 라즈베리파이
- Beacon
- STM32F4
- Python
- orange pi
- Android
Archives
- Today
- Total
[熱情]
[arduino] 문자 출력하고 LED 깜빡이기~ 본문
int ledPin = 13;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(ledPin, HIGH);
delay(1000);
digitalWrite(ledPin, LOW);
Serial.println("Hello World !!");
delay(1000);
}
Comments