일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- uno
- 라즈베리파이
- JSON
- flask
- RUBY
- ruby on rails
- nano
- dht11
- 개발환경
- python3
- IOT
- STM32F4
- Nginx
- mqtt
- Python
- Android
- Beacon
- Arduino
- 오렌지파이
- 아두이노
- rails
- odroid-x2
- ubuntu
- java
- Server
- Raspberry Pi
- Raspberry Pi 3
- BLE
- orange pi
- Today
- Total
목록Arduino/Arduino diy (14)
[熱情]
필요한것.. 아두이노 보드 LED 333옴 저항 케이블~~ 코드는 집에서~~~ ㅋㅋㅋ
- 설명해주는 사이트 http://kocoafab.cc/tutorial/view/495 - 프로그램 http://033310b.netsolhost.com/Arduino/?p=1 - 웹상 작업 http://mikeyancey.com/hamcalc/lcd_characters.php
참고사이트 http://www.techbitar.com/modify-the-hc-05-bluetooth-module-defaults-using-at-commands.html http://mcuboard.com/shop/goods/goods_view.php?goodsno=8622&inflow=naver&NaPm=ct%3Din88p8c8|ci%3D5fdd3a27aa871e579f0820f1f370dfae98196bcd|tr%3Dsls|sn%3D312925|hk%3Db4c18ef6df53592293bb08c5e34ebbbe61dbdf62 FC-114 HC-5 Bluetooth - BT의 LED가 2초에 한번 깜빡여야 AT커맨드 입력 모드가 된다. 그렇치 않을경우 BT의 스위치를 누른상태에서 전원을 연결한다. ..
Software Serial Example https://www.arduino.cc/en/Tutorial/SoftwareSerialExample
DHT11에서 측정된 온/습도값을 oled에 출력해보자. . http://zelkun.tistory.com/56 #include #include "U8glib.h" int ledPin = 13;dht DHT;#define DHT11_PIN 3 U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NONE); void setup(){ Serial.begin(115200); Serial.println("Test DHT11 By Rootkaien "); Serial.println("DHT TEST PROGRAM "); Serial.print("LIBRARY VERSION: "); Serial.println(DHT_LIB_VERSION); Serial.println(); Serial.println..