esp32
-
ESP32-S3(Platformio 아두이노 IDE) LVGL , SquareLine소프트웨어 2025. 2. 5. 14:37
SquareLine을 이용해 생성한 코드를 VSCode Platformio를 통해 ESP32-8048S043에 업로드 하는 예제입니다.1) 설치*SquareLine 최신 버전 설치 SquareLine Studio - Design and build UIs with easeNext generation UI solution for individuals and professionals to design and develop beautiful UIs for your embedded devices quickly and easily. We also do services like UI design, implementation and consulting.squareline.io30일 무료 이후 조건에 따라 무료 사용 가..
-
ESP-IDF 윈도우 개발환경 세팅 (esp32, vscode)소프트웨어 2023. 3. 15. 16:14
*소요시간 : 30분 1) VSCODE 설치 : 설명 스킵 2) 파이썬 설치 : https://www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org (가장 최신 버전으로 다운로드 합니다.) 3) ESP-IDF 설치 : 다운로드 https://dl.espressif.com/dl/esp-idf/?idf= Release version Release date Release notes dl.espressif.com 초록색 Universal Online Installer 다운 - (기본 설정 그대로 설치) 4) VSCODE에서 ctrl+shift+x 눌러 Extension ..
-
TIP122 트렌지스터 - LED - 아두이노/ESP32하드웨어 2023. 1. 29. 17:02
#TIP122 - LED - 아두이노 #TIP122 - LED - ESP32 #관련글 #판매몰 #관련 부품 판매몰 #TIP122 - LED - 아두이노 #결선도 #코드 const int LED = 9; void setup() { } void loop() { analogWrite(LED, 10); delay(1000); analogWrite(LED, 255); delay(1000); analogWrite(LED, 0); delay(1000); } #영상 #TIP122 - LED - ESP32 #결선도 #코드 const int LED = 33; const int freq = 25000; const int Channel0 = 0; const int resolution = 8; void setup() { led..
-
TIP122 트렌지스터 - RGB LED - ARDUINO / ESP32하드웨어 2023. 1. 29. 16:57
#TIP122 - RGB LED - 아두이노 #TIP122 - RGB LED - ESP32 #관련글 #판매몰 #관련 부품 판매몰 #TIP122 - RGB LED - 아두이노 #결선도 #코드 const int G = 9; const int R = 10; const int B = 11; void setup(){ } void loop(){ analogWrite(R, 30); delay(1000); analogWrite(R, 255); delay(1000); analogWrite(R, 0); analogWrite(G, 30); delay(1000); analogWrite(G, 255); delay(1000); analogWrite(G, 0); analogWrite(B, 30); delay(1000); analo..
-
SHT20 온습도센서 방수하드웨어/센서 2022. 8. 31. 15:38
#SHT20 - 아두이노 #SHT20 - ESP32 #관련글 #판매몰 #관련 부품 판매몰 #SHT20 - 아두이노 #결선 빨간색 5V (VCC) 검정색 GND 초록색 A4 (SDA) 노란색 A5 (SCL) #SHT20 - ESP32 #결선 빨간색 3.3V (VCC) 검정색 GND 초록색 21 (SDA) 노란색 22 (SCL) #코드 (아두이노, ESP32 동일) 라이브러리 바로가기 #include #include "SHT21.h" SHT21 SHT21; void setup() { SHT21.begin(); Serial.begin(9600); } void loop() { Serial.print("Humidity(%RH): "); Serial.print(SHT21.getHumidity()); Serial.p..