序列埠監控視窗沒法開啟,軟體已經重新安裝過,問題依舊,有人有遇過這種問題嗎
哪個版本的 IDE? 您是否按下 IDE 右上角的放大鏡?您是否按下 IDE 底部的「Serial Monitor」選項卡?
Which version of IDE? Did you click on the magnifying glass in the top-right of the IDE? Did you click on the "Serial Monitor" tab at the bottom of the IDE?
1.8.19的版本
適用1.8.19的文件
documents for 1.8.19
https://docs.arduino.cc/software/ide/#ide-v1
docs.arduino.cc/software/ide-v2/tutorials/ide-v2-serial-monitor/
你好,是要再重新再載一次軟體的意思嗎?
我目前的情況是按下 IDE 右上角的放大鏡後,從工作列可以看到Arduino 多出一個視窗,但無法點開。
請勿重新載入軟體。
串行數據滾動的速度可能比您按兩下/突出顯示資料的速度要快。
試著點選單擊/突出顯示此...
void setup() {
Serial.begin(115200);
Serial.println("世界您好!");
Serial.println("Hello, World!");
}
void loop() {
// 這裏什麼都沒有 nothing here
}
08124: Hello, do you mean to reload the software again? My current situation is that after pressing the magnifying glass in the upper right corner of the IDE, I can see from the work bar that the Arduino has an extra window, but I can't click on it.
xfpd: Do not reload the software. The serial data might be scrolling past faster than you can click/highlight the data.
xfpd: Try click/highlight this...

