embeded/arduino(genuino)2024. 10. 18. 14:25

부품 보다가 가격이 나쁘진 않은데 먼가 해서 보는데

sd 카드가 있는 녀석과 없는 녀석이 존재한다.

별 이야기는 없지만 color LCD 인것 같고

SDcard에서 파일을 읽어서 LCD로 출력도 된다니까

i2c인지 SDIO인지 나중에 봐야 할 듯.

 

[링크 : https://randomnerdtutorials.com/guide-to-1-8-tft-display-with-arduino/]

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 FFB 휠 소스코드  (0) 2024.10.11
arducam esp8266 https post 예제  (0) 2024.01.31
433MHz RF 통신  (0) 2023.12.07
아두이노 dht11  (0) 2022.11.14
아두이노 Serial.print()와 Serial.write()  (0) 2022.11.14
Posted by 구차니
embeded/arduino(genuino)2024. 10. 11. 11:45

흐음.. 되어있는걸로 하는게 더 편하려나?

[링크 : https://github.com/ranenbg/Arduino-FFB-wheel]

'embeded > arduino(genuino)' 카테고리의 다른 글

1.8인치 TFT LCD with SDcard  (0) 2024.10.18
arducam esp8266 https post 예제  (0) 2024.01.31
433MHz RF 통신  (0) 2023.12.07
아두이노 dht11  (0) 2022.11.14
아두이노 Serial.print()와 Serial.write()  (0) 2022.11.14
Posted by 구차니
embeded/arduino(genuino)2024. 1. 31. 15:22

esp8266이야 wifi 내장이긴 한데

다른 wifi 모듈들도 이런식으로 https를 제공하려나?

 

#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <DHT.h>
#include <WiFiClient.h>
#include <WiFiClientSecureBearSSL.h>
#include <time.h>

[링크 : https://dinist.tistory.com/17]

'embeded > arduino(genuino)' 카테고리의 다른 글

1.8인치 TFT LCD with SDcard  (0) 2024.10.18
아두이노 FFB 휠 소스코드  (0) 2024.10.11
433MHz RF 통신  (0) 2023.12.07
아두이노 dht11  (0) 2022.11.14
아두이노 Serial.print()와 Serial.write()  (0) 2022.11.14
Posted by 구차니
embeded/arduino(genuino)2023. 12. 7. 23:25

싸고 좋은건 없다지만.. 

ISM 대역으로 저렴하면서 멀리까지 나쁘지 않은 속도로 통신이 가능한 모듈이 정말 없다는게 함정..

RX/TX 셋트로 만원인데 문제는 RX/TX가 아니라 RX 와 TX라서

양방향은 안된다는 의미겠구먼..

 

[링크 : https://kocoafab.cc/tutorial/view/218]

[링크 : https://m.eleparts.co.kr/goods/view?no=7666780]

 

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 FFB 휠 소스코드  (0) 2024.10.11
arducam esp8266 https post 예제  (0) 2024.01.31
아두이노 dht11  (0) 2022.11.14
아두이노 Serial.print()와 Serial.write()  (0) 2022.11.14
아두이노 USB HID  (0) 2021.05.07
Posted by 구차니
embeded/arduino(genuino)2022. 11. 14. 17:35

온도 습도 1도, 1% 단위로 측정 가능한 녀석.

그나저나 내부 계산을 하는지 float 형으로 온도와 습도를 전달한다.

 

+

23.09.18

DHT11은 습도 범위 20~80%

DHT22는 0~100% 범위를 읽을 수 있다.

 

[링크 : https://github.com/adafruit/DHT-sensor-library]

[링크 : https://github.com/adafruit/DHT-sensor-library/blob/master/DHT.cpp]

[링크 : https://learn.adafruit.com/dht]

 

'embeded > arduino(genuino)' 카테고리의 다른 글

arducam esp8266 https post 예제  (0) 2024.01.31
433MHz RF 통신  (0) 2023.12.07
아두이노 Serial.print()와 Serial.write()  (0) 2022.11.14
아두이노 USB HID  (0) 2021.05.07
아두이노 시리얼 플로터  (0) 2020.09.08
Posted by 구차니
embeded/arduino(genuino)2022. 11. 14. 16:20

print는 포맷에 맞추어서 출력하고

write는 변환없이 (%c ?) 출력하는 듯.

 

To send data without conversion to its representation as characters, use Serial.write().

[링크 : https://www.arduino.cc/reference/en/language/functions/communication/serial/print/

 

구조체 만들고

세번째 방식으로 출력하면 되려나?

Serial.write(val)
Serial.write(str)
Serial.write(buf, len)

[링크 : https://www.arduino.cc/reference/en/language/functions/communication/serial/write/]

'embeded > arduino(genuino)' 카테고리의 다른 글

433MHz RF 통신  (0) 2023.12.07
아두이노 dht11  (0) 2022.11.14
아두이노 USB HID  (0) 2021.05.07
아두이노 시리얼 플로터  (0) 2020.09.08
TEA5767 살까 말까..  (0) 2020.06.15
Posted by 구차니
embeded/arduino(genuino)2021. 5. 7. 13:55

막상 사지니 개당 만원 정도 해서 헉! 스럽네 -_ㅠ

 

[링크 : https://gigglehd.com/gg/lifetech/4872763]

[링크 : https://ndb796.tistory.com/395]

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 dht11  (0) 2022.11.14
아두이노 Serial.print()와 Serial.write()  (0) 2022.11.14
아두이노 시리얼 플로터  (0) 2020.09.08
TEA5767 살까 말까..  (0) 2020.06.15
지름신 축적중  (0) 2020.06.10
Posted by 구차니
embeded/arduino(genuino)2020. 9. 8. 15:25

오.. 맨날 시리얼 모니터만 봤는데 이런 기능이!

 

[링크 : https://blog.naver.com/cherrychance/221339259943]

[링크 : https://blog.naver.com/roboholic84/220636488242]

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 Serial.print()와 Serial.write()  (0) 2022.11.14
아두이노 USB HID  (0) 2021.05.07
TEA5767 살까 말까..  (0) 2020.06.15
지름신 축적중  (0) 2020.06.10
ULN2003 보드 / 28BYJ-48 스텝 모터  (0) 2020.05.05
Posted by 구차니
embeded/arduino(genuino)2020. 6. 15. 14:49

FM 라디오

재미있어 보이는 장난감인데 살까 말까..

 

[링크 : http://vctec.co.kr/product/프로그래밍-가능-스테레오-fm-라디오-모듈.../10533/]

[링크 : https://blog.naver.com/roboholic84/221618690454]

 

+

2022.08.08

[링크 : https://m.blog.naver.com/kjnam100/220694105789]

[링크 : https://github.com/kjnam100/radio_tea5767]

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 USB HID  (0) 2021.05.07
아두이노 시리얼 플로터  (0) 2020.09.08
지름신 축적중  (0) 2020.06.10
ULN2003 보드 / 28BYJ-48 스텝 모터  (0) 2020.05.05
L298N 보드 사용 준비  (0) 2020.04.28
Posted by 구차니
embeded/arduino(genuino)2020. 6. 10. 21:30

호환인가 불법복제인가.. 무지 싸네?

 

[링크 : http://itempage3.auction.co.kr/DetailView.aspx?itemno=B507572246]

[링크 : https://atadiat.com/en/e-hands-on-test-saleae-usb-logic-analyzer-24mhz-8ch-clone/]

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 시리얼 플로터  (0) 2020.09.08
TEA5767 살까 말까..  (0) 2020.06.15
ULN2003 보드 / 28BYJ-48 스텝 모터  (0) 2020.05.05
L298N 보드 사용 준비  (0) 2020.04.28
L293D 아두이노 드라이버  (0) 2020.04.22
Posted by 구차니