일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- parser
- Server
- odroid-x2
- java
- dht11
- 개발환경
- rails
- 오렌지파이
- Python
- IOT
- STM32F4
- python3
- 라즈베리파이
- Android
- Beacon
- 아두이노
- flask
- Raspberry Pi 3
- ubuntu
- nano
- Raspberry Pi
- JSON
- RUBY
- BLE
- orange pi
- Nginx
- Arduino
- mqtt
- uno
- ruby on rails
- Today
- Total
목록Arduino/Arduino diy (14)
[熱情]
아두이노를 처음 사용하면 아래 동영상을 보면 편하다. 따라하기~~ https://arduino-info.wikispaces.com/DHT11-Humidity-TempSensor 사용할 dht11의 라이브러리는 아래 사이트에서 가지고 왔음.. https://arduino-info.wikispaces.com/DHT11-Humidity-TempSensor dht11은 알리바바에서 구입했음. (가격은 싸지만.. 언제 배송될지 모름.. ㅠㅠ) http://www.aliexpress.com/item/3pcs-lot-DHT11-Digital-Temperature-and-Humidity-Sensor-Module-for-Arduino-Electronic-Building-Blocks-FZ0564-Free/119603349..
aliexpress에서 나노에 호환되는 보드를 몇개를 구입했다.. 싸니깐 .;;; Nano 3.0 Atmel ATmega328 https://www.arduino.cc/en/Main/ArduinoBoardNano
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);}