差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录 前一修订版
后一修订版
前一修订版
developmentboard:esp32-c3-1.28-lcd [2024/04/11 07:35] admin12developmentboard:esp32-c3-1.28-lcd [2024/04/11 11:43] (当前版本) admin12
行 1: 行 1:
-====== ESP32-C3-1U-1.28英寸屏幕 ======+====== ESP32-C3-1U-1.28 inch screen ======
  
- **Welcome to the QSZNTEC Workshop! **+**Welcome to the QSZNTEC Workshop! ** 
 +===== Table of contents =====
  
-=====   Table of contents   =====+=== 一、Introduction ===
  
-==== 一、Introduction ====+===   ===
  
-==== 二、Installing using Arduino IDE ====+=== 二、Installing using Arduino IDE ===
  
-==== 三、sample program usage ====+===   ===
  
-=====     Getting Started     =====+=== 三、sample program usage ===
  
-===== **Introduction** =====+===   === 
 + 
 +===== Getting Started ===== 
 + 
 +===== Introduction =====
  
 The objective of this post is to explain how to upload an Arduino program to the ESP32-C3 module, from QSZNTEC . The objective of this post is to explain how to upload an Arduino program to the ESP32-C3 module, from QSZNTEC .
行 33: 行 38:
 flash. flash.
  
-=====   Installing using Arduino IDE   =====+===== Installing using Arduino IDE =====
  
 Programming the ESP32-C3-MINI-1U Programming the ESP32-C3-MINI-1U
行 53: 行 58:
 Here is what you need to do to install the ESP32 boards into the Arduino IDE: Here is what you need to do to install the ESP32 boards into the Arduino IDE:
  
-(1) Open the Arduino IDE.+=== (1) Open the Arduino IDE. ===
  
 {{:developmentboard:1-4.png}} {{:developmentboard:1-4.png}}
  
-(2)Click on the File menu on the top menu bar.+=== (2)Click on the File menu on the top menu bar. ===
  
-(3)Click on the Preferences menu item. This will open a Preferences dialog box.+=== (3)Click on the Preferences menu item. This will open a Preferences dialog box. ===
  
 {{:developmentboard:2-4.png}} {{:developmentboard:2-4.png}}
  
-(4)You should be on the Settings tab in the Preferences dialog box by default.+=== (4)You should be on the Settings tab in the Preferences dialog box by default. ===
  
-(5)Look for the textbox labeled “Additional Boards Manager URLs”.+=== (5)Look for the textbox labeled “Additional Boards Manager URLs”. ===
  
-(6)If there is already text in this box add a coma at the end of it, then follow the next step.+=== (6)If there is already text in this box add a coma at the end of it, then follow the next step. ===
  
-(7)Paste the following link into the text box :+=== (7)Paste the following link into the text box : ===
  
 Stable release link: [[https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json|https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json]] Stable release link: [[https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json|https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json]]
行 75: 行 80:
 Development release link: [[https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json|https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json]] Development release link: [[https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json|https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json]]
  
-(8)Click the OK button to save the setting. The textbox with the JSON link in it is illustrated here:+=== (8)Click the OK button to save the setting. The textbox with the JSON link in it is illustrated here: ===
  
 {{:developmentboard:3-4.png}} {{:developmentboard:3-4.png}}
  
-(9) In the Arduino IDE click on the Tools menu on the top menu bar.+=== (9) In the Arduino IDE click on the Tools menu on the top menu bar. ===
  
-(10) Scroll down to the Board: entry+=== (10) Scroll down to the Board: entry ===
  
-(11) A submenu will open when you highlight the Board: entry.+=== (11) A submenu will open when you highlight the Board: entry. ===
  
-(12) At the top of the submenu is Boards Manager. Click on it to open the Boards Manager dialog box.+=== (12) At the top of the submenu is Boards Manager. Click on it to open the Boards Manager dialog box. ===
  
-(13)I n the search box in the Boards Manager enter “esp32”.+=== (13)I n the search box in the Boards Manager enter “esp32”. ===
  
 {{:developmentboard:4-4.png}} {{:developmentboard:4-4.png}}
  
-(14) You should see an entry for “esp32 by Espressif Systems”. Highlight this entry and click on the+=== (14) You should see an entry for “esp32 by Espressif Systems”. Highlight this entry and click on the ===
  
-Install button. This will install the ESP32 boards into your Arduino IDE+=== Install button. This will install the ESP32 boards into your Arduino IDE ===
  
 {{:developmentboard:4-5.png}} {{:developmentboard:4-5.png}}
行 119: 行 124:
 If everything is working fine, we will see the output in the serial console shown. If everything is working fine, we will see the output in the serial console shown.
  
-void setup() {+** <font 16px/inherit;;inherit;;inherit>void setup() {</font>  **
  
-Serial.begin(115200);+** <font 16px/inherit;;inherit;;inherit>Serial.begin(115200);</font>  **
  
-}+** <font 16px/inherit;;inherit;;inherit>}</font>  **
  
-void loop() {+** <font 16px/inherit;;inherit;;inherit>void loop() {</font>  **
  
-Serial.println("hello from ESP32");+** <font 16px/inherit;;inherit;;inherit>Serial.println("hello from ESP32");</font>  **
  
-delay(1000);+** <font 16px/inherit;;inherit;;inherit>delay(1000);</font>  **
  
-}+** <font 16px/inherit;;inherit;;inherit>}</font>  **
  
 {{:developmentboard:4-9.png}} {{:developmentboard:4-9.png}}
行 137: 行 142:
 Again thank you for so much concern.. Hopefully, it's the beginning of a wonderful relationship! Again thank you for so much concern.. Hopefully, it's the beginning of a wonderful relationship!
  
-=====   Sample program usage   =====+===== Sample program usage =====
  
 At present, only a preliminary explanation and introductory use are given to the samples displayed on At present, only a preliminary explanation and introductory use are given to the samples displayed on
行 161: 行 166:
 ordinary users, that is, after the installation ordinary users, that is, after the installation
  
-====   About the use of Factory_samples   ====+==== About the use of Factory_samples ====
  
 Find the data center 1_1_Factory_samples Find the data center 1_1_Factory_samples
  • developmentboard/esp32-c3-1.28-lcd.1712820905.txt.gz
  • 最后更改: 2024/04/11 07:35
  • admin12