-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMotor Type Setup.c
More file actions
16 lines (15 loc) · 1006 Bytes
/
Motor Type Setup.c
File metadata and controls
16 lines (15 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma config(Motor, port1, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port2, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port3, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port4, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port5, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port6, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port7, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port8, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port9, , tmotorVex393HighSpeed, openLoop)
#pragma config(Motor, port10, , tmotorVex393HighSpeed, openLoop)
//*!!Code automatically generated by 'ROBOTC' configuration wizard !!*//
task main()
{
setAllMotorHiSpeed();
}