Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(Lab Explorations)
(Maintenance)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
= From 2023 Java Training =
 
= From 2023 Java Training =
 +
 +
== Take another look ==
 +
 +
* [https://ftc-docs.firstinspires.org/projects/ftcdocs-archive/en/latest/ftc_ml/managing_tool/index.html Managing the FTC-ML Workflow]
 +
 +
from team 23918 - Super Sigma Robotics - gave Tensor Flow workshop at first fare Saturday 9/21/24
  
 
== Prepared Labs ==
 
== Prepared Labs ==
Line 13: Line 19:
 
== Lab Explorations ==
 
== Lab Explorations ==
 
* [[FTC Using Android Debugging Bridge to Locate Bugs 20231108]]
 
* [[FTC Using Android Debugging Bridge to Locate Bugs 20231108]]
 +
* [[FTC Programming Teleop 20240924]]
 
* [[FTC Compute Move Distance 20221014]]
 
* [[FTC Compute Move Distance 20221014]]
 
* [[FTC Compute a 90 Degree Turn 20221104]]
 
* [[FTC Compute a 90 Degree Turn 20221104]]
Line 98: Line 105:
  
 
* [[FTC TrainingBot Upgrade 20230901]]
 
* [[FTC TrainingBot Upgrade 20230901]]
 +
 +
= Issues =
 +
 +
* [[Battery]]
  
 
= Github fix references =
 
= Github fix references =

Latest revision as of 14:42, 28 September 2024

From 2023 Java Training

Take another look

from team 23918 - Super Sigma Robotics - gave Tensor Flow workshop at first fare Saturday 9/21/24

Prepared Labs

Lab Explorations

Maintenance

TensorFlow Video Training


 /**
  * Initialize the Vuforia localization engine.
  */
 private void initVuforia() {
   /*
    * Configure Vuforia by creating a Parameter object, and passing it to the Vuforia engine.
    */
   VuforiaLocalizer.Parameters parameters = new VuforiaLocalizer.Parameters();

   parameters.vuforiaLicenseKey = VUFORIA_KEY;
   parameters.cameraDirection = CameraDirection.BACK;

   //  Instantiate the Vuforia engine
   vuforia = ClassFactory.getInstance().createVuforia(parameters);

   // Loading trackables is not necessary for the TensorFlow Object Detection engine.
 }

Apriltag Notes

Control Hub specs

Notice the Multi-Media Processor at the bottom middle of the block diagram below:

  • Graphic Engine
  • JPEG Decoder
  • IEP
  • 1080P Video encoder
  • 4K Video decoder

General Specifications

  • Processor
    • RK3328 Quad-core ARM® Cortex-A53
    • Texas Instruments ARM® Cortex®-M4
  • Memory 1GB LPDDR3
  • Storage 8GB eMMC 4.51
  • Wireless
    • 802.11 ac/b/g/n/w Wi-Fi; Dual Band 2.4 & 5 GHz
    • Bluetooth 4.1
  • Graphics‡
    • GPU - ARM® Mali 450MP4
    • HDMI 2.0 support for 4k @ 60Hz

References

Maintenance

Issues

Github fix references