青少年 全方位科技的學習方案 13+
VEX機器人自 2005 年問世以來,在全世界青少年科普及創新教育中一直處於引領的地位,是全球領先的教育機器人平台,專為教育和競賽而設計,集結多年的開發經驗反饋,創建了一個更快,更智能,更強大的控制系統,非常適合任何學習環境,由具影響力的機器人教育與競賽基金會 (RECF) 主辦 VEX 機器人世界錦標賽。
適合年齡13+
實體的實驗活動,使學習者沉浸在科學,技術,工程和數學 (STEM) 概念中。
除了科學和工程,VEX機器人也鼓勵創造力、團隊合作、領導力和解決問題的能力培養。
VEX機器人錦標賽,每年都會以遊戲的形式提出令人激動的工程挑戰,為世界級的大賽。
使用 Scratch3.0 拖放方塊,加入給 VEX 機器人專屬的函式,親切的介面讓初學者一用就上手。
近年最流行的 Python 程式語言也有支援,還可以直接將圖形化程式轉換成 Python,讓學生更容易入門文字型程式。
# Library imports
from vex import *
# Begin project code
# Print all Accelerometer sensing values to the screen in an infinite loop
while True:
# Clear the screen and set the cursor to top left corner on each loop
brain.screen.clear_screen()
brain.screen.set_cursor(1,1)
brain.screen.print("Acceleration - X:", accel_2g_a_x.acceleration())
brain.screen.next_row()
brain.screen.print("Acceleration - Y:", accel_2g_a_y.acceleration())
brain.screen.next_row()
brain.screen.print("Acceleration - Z:", accel_2g_a_z.acceleration())
brain.screen.next_row()
# A brief delay to allow text to be printed without distortion or tearing
wait(50,MSEC)
最適合給機器人運行的編譯型程式,追求最佳效能,包含完善的函示庫,專業全面的控制機器人主機。
// Include the V5 Library
#include "vex.h"
// Allows for easier use of the VEX Library
using namespace vex;
int main() {
// Begin project code.
// Print all Accelerometer sensing values to the screen in an infinite loop
while(true) {
// Clear the screen and set the cursor to top left corner on each loop
Brain.Screen.clearScreen();
Brain.Screen.setCursor(1, 1);
Brain.Screen.print("Acceleration - X: %.2f", Accel2GAX.acceleration());
Brain.Screen.newLine();
Brain.Screen.print("Acceleration - Y: %.2f", Accel2GBY.acceleration());
Brain.Screen.newLine();
Brain.Screen.print("Acceleration - Z: %.2f", Accel2GCZ.acceleration());
Brain.Screen.newLine();
// A brief delay to allow text to be printed without distortion or tearing
wait(50, msec);
}
return 0;
}
VEX 機器人提供圖形化或僅文字型的進階整合開發環境,無論微軟系統或 Mac,下載一個程式安裝即可使用完整功能,環境韌體設置一鍵完成。
超過三萬名學生的參與,打破最大機器人比賽的世界記錄。
現場直播式的線上 VEX 世界機器人大賽,打破了世界紀錄。
VEX 機器人世界錦標賽於 2007 年在美國創辦。分成國中、高中和大學三個級別。要求參加比賽的代表隊自行設計、製作機器人並寫入程式。參賽的機器人既能自動完成任務,也能通過遙控器控制,並可以在特定的競賽場地上,按照一定的規則要求進行的比賽活動。