最近要教學生玩Tello Edu版,還想要讓學生用Scratch 寫程式。查詢網路資料,發現步驟有點麻煩。希望能夠用簡易的方式來完成設定,最好是能夠用點兩下,就能夠完成安裝與設定。這時,才驚覺可以用BAT來完成。因此,只要點兩下,就能在Windows 10 建立Tello Scratch 2.0積木環境(安裝AdobeAIR、Scratch 2.0、node.js )
Here is the website where you can download the program and find instructions:
Download。Extraction Password: demo1234
使用教學(Instructional videos):
以下是開發過程與原始碼 (Development process and code):
從資料來源1.從安裝到使用 Scratch 寫程式控制 Tello,我們大抵知道手動安裝的順序。安裝順序如下:
1.下載
1.下載
(2)Node.js
(3)Tello Scratch2.0 點選Tello Scratch2.0,就會進行下載,檔名為Release.zip。
解壓縮後,就可以看到Release\內有Scratch資料夾
Release\Scratch資料夾內有三個檔案:Tello.js、Tello.s2e、TelloChs.s2e
2.將Release\Scratch更名為tello,放置到TelloScratch20\
那我們寫成一個BAT,檔名為TelloScratch20.bat
檔案內容為:
@echo off
REM --------------以下為設定檔-可修改--------------
set driver01_64=%~dp0Program\AdobeAIR.exe
set driver02_64=%~dp0Program\Scratch-461.exe
set driver03_64=%~dp0Program\node-v20.10.0-x64.msi
REM ----------------以下為程式碼-可修改--------------
REM 安裝 AdobeAIR
start/wait %driver01_64%
echo 安裝 %driver01_64% OK
REM 安裝 Scratch
start/wait %driver02_64%
echo 安裝 %driver02_64% OK
REM 安裝 Node
msiexec /package %driver03_64%
echo 安裝 %driver03_64% OK
REM 在C槽建立tello 資料夾
md C:\tello\
REM 將隨身碟tello資料夾內的檔案,複製到C槽tello資料夾
copy %~dp0tello C:\tello\
echo 複製隨身碟內tello 到 C:\tello OK
REM 以Node啟動C槽tello資料夾內的 Tello.js
"C:\Program Files\nodejs\node.exe" C:\tello\Tello.js
Pause
exit
資料來源:
1.從安裝到使用 Scratch 寫程式控制 Tello
1.從安裝到使用 Scratch 寫程式控制 Tello