ESP32-S3 Pico
มีค่าส่งเริ่มต้น 45 บาท ค่าจัดส่งเริ่มต้นโดยประมาณ อาจมีการเปลี่ยนแปลงตามที่อยู่หรือปริมาณที่ท่านเลือก ระบบจะคำนวณค่าจัดที่แท้จริงในหน้าชำระเงิน
Receive in-stock notifications for this.
รายละเอียดสินค้า
คำอธิบาย
ESP32-S3-PICO-1 is a System-in-Package (SiP) device that is based on ESP32-S3 with integrated 2.4 GHz Wi-Fi and Bluetooth® Low Energy (Bluetooth LE). It integrates an 8 MB SPI flash and an up to 8 MB SPI PSRAM.
ESP32-S3-PICO-1 provides complete Wi-Fi and Bluetooth® functionalities and is designed with the TSMC low-power 40 nm technology. It seamlessly integrates all peripheral components, including a crystal oscillator, decoupling capacitors, SPI flash/PSRAM, and RF matching links, within a single package. As a result, there is no need for additional peripheral components, simplifying the soldering and testing processes. It also streamlines the supply chain and enhances control and management efficiency. With its ultra-small size, robust performance, and low-energy consumption, ESP32-S3-PICO-1 is well suited for any space-limited or battery-operated applications, such as wearable electronics, medical equipment, sensors and other IoT products.
At the core of ESP32-S3-PICO-1 is the ESP32-S3 chip, a low-power MCU-based system on a chip (SoC) with integrated 2.4 GHz Wi-Fi and Bluetooth® Low Energy (Bluetooth LE). It consists of high-performance dual-core microprocessor (Xtensa® 32-bit LX7), a low-power coprocessor, a Wi-Fi baseband, a Bluetooth LE baseband, RF module, and numerous peripherals. For more details on ESP32-S3, please refer to ESP32-S3 Series Datasheet
เริ่มต้นใช้งาน ESP32-S3 Pico
ขั้นตอนที่ 1 ดาวน์โหลด Arduino IDE
- เรียกดู: https://www.arduino.cc/en/Main/Software
- ดาวน์โหลด IDE สำหรับระบบปฏิบัติการ Windows/Mac/Linux ของคุณ
ขั้นตอนที่ 2
เสียบบอร์ด ESP32-S3 Pico เข้ากับคอมพิวเตอร์ของคุณ บอร์ดจะใช้พลังงานจากสาย USB สำหรับตัวอย่างนี้ จึงไม่จำเป็นต้องมีแหล่งจ่ายไฟภายนอก
*โปรดตรวจสอบว่าสาย USB-C สามารถใช้งานถ่ายโอน Data ได้
- เสียบสาย USB เข้ากับคอมพิวเตอร์ของคุณ
- เสียบสาย USB เข้ากับบอร์ด ESP32-S3 Pico
ขั้นตอนที่ 3 กำหนดค่า Arduino IDE สำหรับบอร์ด ESP32-S3 Pico
- เริ่ม Arduino IDE
- จากเมนูหลัก เลือก Arduino > Preferences…
- สำหรับ Additional Board Manager URLs ให้เพิ่ม Url นี้ลงไป:
https://dl.espressif.com/dl/package_esp32_index.json
- พิมพ์ esp32
- จะเห็นรายการสำหรับ esp32 โดย espressif systems
- คลิก install
- คลิก Close
ขั้นตอนที่ 4 เลือกบอร์ดของคุณ
- เลือก Tools > Board : *
- เลือกบอร์ดของคุณ ( ESP32S3 Dev Module )
- เลือก Tools > Port : *
- เลือกพอร์ตที่กำลังต่อใช้งาน (COM_X , /dev/…)
ขั้นตอนที่ 5 เรียกใช้ตัวอย่าง Blink sketch
- เลือก File > Examples > 01. Basics > Blink
สำหรับ ESP32-S3 Pico ขาของ RGB_LED Built-in จะใช้ GPIO21
Code ควรมีลักษณะดังนี้:
int LED = 21;
void setup() {
pinMode(LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(1000);
digitalWrite(LED, LOW);
delay(1000);
}
ขั้นตอนที่ 6 อัปโหลด Code ไปยัง ESP32-S3 Pico
- ก่อนอัพโหลดต้อง กดปุ่ม BOOT ค้างไว้ แล้วกด RESET
- คลิกปุ่ม Upload (สัญลักษณ์ลูกศรชี้ขวา บนแถบเครื่องมือ IDE)
ขั้นตอนที่ 7 ตรวจสอบการทำงานของโปรแกรม
- ตรวจสอบ LED ออนบอร์ดกะพริบและดับ
- หากโปรแกรมไม่เริ่มทำงาน ให้กดปุ่ม RESET 1 ครั้ง เพื่อเริ่ม