Difference between revisions of "FTC Power Up a Motor 20230911"

From wikidb
Jump to: navigation, search
(Power Up)
Line 27: Line 27:
 
##
 
##
 
# Be sure to power off the Driver Station and
 
# Be sure to power off the Driver Station and
#   the Control Hub when  done
+
# the Control Hub when  done
 
# Be sure to change every thing
 
# Be sure to change every thing
  

Revision as of 15:02, 11 September 2023

Lab 1: Power Up

Core Resources

  • OnBot Java Guide Chapters14, 15 and 16 (pages 78 to 99) are focused on Creating and Running an Op Mode in OnBot Java.

Why

  • Master basic operations

Check Points

  1. Power up the FTC Training Robot
  2. Run the TestMotor app on the FTC Training Robot
  3. Make the Training Robot go faster.
  4. Make the robot drive straight - if it isn't
    1. Why might the robot drive to the left or to the right?

HowTo - More Details

Power Up

  1. Power up Control Hub - wait for green LED
  2. Power up the Driver Station
    1. Run the FTC Driver Station app
    2. Run the Test Motor Op Mode
  3. Be sure to power off the Driver Station and
  4. # the Control Hub when done
  5. Be sure to change every thing

Running the Demo Code

  • Make sure the Driver Station cell phone is on
  • Make sure the "FTC Driver Station" app is running
  • Select the Autonomous dropdown menu (left triangle that points down)
  • Select the "Epp Motor Test" app
  • If the app is not in the list, you may need to "Build" it from the laptops web browser you used above

Connecting from a Laptop to the Robot

  • Make sure the robot is on
    • OrRAS01-RC
    • OrRAS02-RC
    • OrRAS03-RC
  • Make sure your laptop Wifi is connected to the Robots Wifi
  • Start a Web Browser on the laptop
  • Connect to 192.168.43.1:8080 - if you are using a Control Hub
    • 192.168.49.1:8080 - if you are using a Android phones
  • Select the OnBotJava tab
  • TestMotor.java should be in the Project Files list

Example Configuration File

Warning : Incomplete, unclear, Untested, may be wrong

  • name: OrRAS
    • Webcam 1: 9BB6F610
    • Control Hub Portal: embedded
      • Control Hub
        • Motors
          • 0: REV Robotics Core Hex Motor: myLeftMotor
          • 1: REV Robotics Core Hex Motor: myRightMotor
        • I2C Bus 0
          • REV Expansion Hub IMU: imu

Reading and Modifying the Configuration File

TBD

Additional References