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
- Server
- parser
- ubuntu
- Nginx
- java
- flask
- uno
- python3
- RUBY
- 오렌지파이
- Android
- 라즈베리파이
- dht11
- Raspberry Pi
- Python
- ruby on rails
- rails
- BLE
- 개발환경
- JSON
- Arduino
- nano
- mqtt
- odroid-x2
- Raspberry Pi 3
- Beacon
- STM32F4
- 아두이노
- IOT
- orange pi
Archives
- Today
- Total
목록LCD (2)
[熱情]
Design a Custom Character for an LCD
- 설명해주는 사이트 http://kocoafab.cc/tutorial/view/495 - 프로그램 http://033310b.netsolhost.com/Arduino/?p=1 - 웹상 작업 http://mikeyancey.com/hamcalc/lcd_characters.php
Arduino/Arduino diy
2016. 4. 26. 10:47
DHT11에서 측정된 온/습도값을 oled에 출력
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..
Arduino/Arduino diy
2016. 2. 16. 01:41