The content includes:
- Apr 11 Tue 2023 23:25
-
[第26期]使用ChatGPT在Arduino實現觀察者模式的程式碼/Use ChatGPT to implement Observer Pattern code in Arduinoar
This video shows how to use ChatGPT to implement Observer Pattern code in Arduino.
The content includes:
The content includes:
- Jan 15 Sat 2022 16:01
-
[第13期]Use VS Code and PlatformIO to debug Arduino code in the ESP Wrover Kit with internal JTAG
This Video shows how to use VS Code and PlatformIO to debug Arduino code in the ESP Wrover Kit with internal JTAG.
1. Introduce PlatformIO
1. Introduce PlatformIO
- Nov 28 Sun 2021 15:33
-
[Note 2] Software Debugger Library for Arduino IDE 在Arduino開發環境中的軟體偵錯程式庫
This video shows the test procedure of the software debugger used in the Arduino IDE.
本視頻展示一個軟體偵錯器在Arduino開發環境中的測試過程。
本視頻展示一個軟體偵錯器在Arduino開發環境中的測試過程。
- Aug 22 Sat 2020 14:18
-
[Arduino] Acquisition of MPU6050 raw data by using Mega2560/使用Mega2560擷取MPU6050原始資料
This example shows how read the raw data of MPU6050 by using Arduino Mega2560.
There are several steps:
There are several steps:
- Aug 15 Sat 2020 10:48
-
[Arduino] Edit Arduino code to control RGB LED in VS code/使用VS code編輯Arduino程式碼來控制RGB LED
This video show the blinking of RGB LED controlled by Mega2560.
本影片展示用Mega2560控制RGB LED閃爍的狀況。
本影片展示用Mega2560控制RGB LED閃爍的狀況。
- May 24 Sun 2020 12:03
-
[Arduino][VS Code][Voice] Edit Arduino code in the VS code/在VS Code中編輯Arduino程式碼
This example shows how to install Arduino extension and edit Arduino code in the VS code.
這個範例說明如何在VS Code中安裝Arduino extension以及編輯Arduino程式碼。
1. Install Arduino extension in the VS code.
在VS code中安裝Arduino extension。
2. Set Arduino installation Path.
設定 Arduino的安裝路徑。
3. Ctrl+Shift+P to input command " Arduino: Examples".
使用 Ctrl+Shift+P去輸入"Arduino: Examples"指令。
4. Open Blinky example
打開Blink的範例
5. Select COM port and board type "Mega2560".
選擇COM port, 以及Mega2560開發版。
6. Modify code and upload to Mega2560.
修改程式碼然後上傳到Mega2560上。
這個範例說明如何在VS Code中安裝Arduino extension以及編輯Arduino程式碼。
1. Install Arduino extension in the VS code.
在VS code中安裝Arduino extension。
2. Set Arduino installation Path.
設定 Arduino的安裝路徑。
3. Ctrl+Shift+P to input command " Arduino: Examples".
使用 Ctrl+Shift+P去輸入"Arduino: Examples"指令。
4. Open Blinky example
打開Blink的範例
5. Select COM port and board type "Mega2560".
選擇COM port, 以及Mega2560開發版。
6. Modify code and upload to Mega2560.
修改程式碼然後上傳到Mega2560上。
- Nov 03 Sun 2019 12:44
-
[Arduino] Mega 2560 Analog Inputs are transferred to voltage/將mega 2560的類比輸入轉成電壓訊號
Read A0, A1 and A15 analog input and transfer to voltage value. in Range function check if voltage is in the right range.
讀出A0, A1和A15的類比訊號,轉換成電壓訊號,
然後再用inRange函式判斷是否有在正確的範圍內。
讀出A0, A1和A15的類比訊號,轉換成電壓訊號,
然後再用inRange函式判斷是否有在正確的範圍內。
- Oct 11 Fri 2019 11:03
-
[Arduino] LabVIEW for Arduino無法與Arduino IDE 1.8.5以上版本溝通
由於一段時間沒使用Arduino,於是裝了最新的Arduinon IDE 1.8.10,
沒想到在執行LabVIEW程式時一直出現error 5003,讓我一度以為Mega2560的板子壞了,
沒想到在執行LabVIEW程式時一直出現error 5003,讓我一度以為Mega2560的板子壞了,
- May 25 Sat 2019 17:00
-
在Arduino IDE安裝ESP32 Add-On
- May 28 Sun 2017 13:28
-
Arduino應用:利用analogResolution()增加類比訊號讀取的解析度
I try to increase th resolution of the analog signal. I think there are two methods to fillfull it. One is the adjustment the analog reference which is provided in Mega boards, another is to use higher resolution Arduino boards such as DUE.
I had tried these two methods and I wrote down some tips in the following:
After I tried Mega2560 and DUE, Mega2560 board can implement the function of analogReference(), but Due didn’t.
I had tried these two methods and I wrote down some tips in the following:
After I tried Mega2560 and DUE, Mega2560 board can implement the function of analogReference(), but Due didn’t.
- Apr 16 Sun 2017 13:19
-
Arduino問題 WProgram.h: No such file or directory
有時候會在網路上Download一些別人寫好的函式庫與範例,
在執行時會遇到:"WProgram.h: No such file or directory"訊息,
基本上我是在該函式庫的.cpp以及.h中,將原先的"WProgram.h" 改成 "Arduino.h",
下載的範例即可執行,
在執行時會遇到:"WProgram.h: No such file or directory"訊息,
基本上我是在該函式庫的.cpp以及.h中,將原先的"WProgram.h" 改成 "Arduino.h",
下載的範例即可執行,
- Apr 09 Sun 2017 13:41
-
如何輸入已寫好的函式庫(資料夾或ZIP)到Arduino函示庫中

由於網路上有很多寫好的Arduino函式庫,大部分都是用成ZIP下載,
我查了一些關於如何撰寫的資料,如果有興趣可以試著寫看看:
1. http://yehnan.blogspot.tw/2013/01/arduino.html

