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
- ubuntu
- Nginx
- python3
- ruby on rails
- IOT
- 라즈베리파이
- Raspberry Pi 3
- 오렌지파이
- Raspberry Pi
- BLE
- 아두이노
- odroid-x2
- 개발환경
- Server
- Python
- dht11
- mqtt
- rails
- java
- Beacon
- JSON
- STM32F4
- parser
- uno
- orange pi
- Arduino
- flask
- nano
- RUBY
- Android
Archives
- Today
- Total
목록Arduino (18)
[熱情]
ESP8266
시작전. 관련 사이트 모으기. http://blog.3mdeb.com/2015/01/24/power-on-of-esp-12/http://luyin.tistory.com/403http://blog.naver.com/cimygy/220533660117http://blog.naver.com/cimygy/220529105393 http://forum.hobbycomponents.com/viewtopic.php?f=74&t=1777 - esp8266을 사용할때 전원은 3.3v를 사용한다 - USB 시리얼에서 3.3V를 출력있어서 사용하였지만. 전원과 그라운드가. 불안한지. 잘 안됨.. 그래서 아두이노 메가에서 나오는 3.3v와 GND를 사용함 - 기본적으로 AT모드를 설치되어 있음 참고 영상 - https://y..
Arduino/기타 모듈
2016. 1. 15. 17:09
[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);}
Arduino/Arduino diy
2015. 9. 12. 01:52