Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 863 Bytes

File metadata and controls

31 lines (20 loc) · 863 Bytes

FasterAppleGrowthCore

A small Java console project that models the diagrammed system: control hub, expansion hub, custom accelerator, smart motor controllers, sensors, and peripherals. It prints a topology overview and streams simulated telemetry ticks.

Run

Requirements: Java 17+

Build and run with Maven

mvn -q -DskipTests package
java -jar target/faster-apple-growth-core-1.0.0.jar

Run directly with javac

javac -d out src/main/java/com/ftc/fasterapplegrowthcore/Main.java
java -cp out com.ftc.fasterapplegrowthcore.Main

What it does

  • Shows the system topology and data links
  • Simulates ticks with load/temperature per component
  • Emits events for AI vision, sensor fusion, and motor control loops

Extend

Add new components or links in FasterAppleGrowthCoreSystem.defaultTopology() to expand the simulation.