Create: Avionics
Create: Avionics adds CC: Tweaked peripherals for the Create: Simulated and Create: Aeronautics ecosystems. It's a drop-in addon — no fork, no patches.
Peripherals
The sidebar lists every peripheral exposed to ComputerCraft. Each page documents the methods callable from Lua — argument types, return values, and any mainThread / yield notes.
Wrap a peripheral the usual way:
local engine = peripheral.find("portable_engine") print(engine.getRpm())
Source
Source: https://github.com/SolAstrius/CreateAvionics · License: MIT.
Globals
| _G | Stubs for the CC: Tweaked globals our docs reference. |
|---|
Peripherals
| Create_CreativeMotor | Drop-in replacement for Create's Create_CreativeMotor peripheral. |
|---|---|
| Create_ElevatorContact | An elevator contact — one floor button + landing pad. |
| Create_ElevatorPulley | An elevator pulley — Create's smart-floor lift. |
| Create_GantryShaft | A gantry shaft — the rail along which a gantry carriage slides. |
| Create_MechanicalBearing | A mechanical bearing — Create's contraption assembler. |
| Create_MechanicalPiston | A mechanical piston (regular or sticky). |
| Create_RopePulley | A rope pulley. |
| Create_RotationSpeedController | Drop-in replacement for Create's Create_RotationSpeedController peripheral. |
| Create_SequencedGearshift | Drop-in replacement for Create's Create_SequencedGearshift peripheral. |
| Create_Speedometer | Drop-in replacement for Create's Create_Speedometer peripheral. |
| Create_Stressometer | Drop-in replacement for Create's Create_Stressometer peripheral. |
| altitude_sensor | Reports the sensor's world altitude, local air pressure, and vertical speed. |
| analog_transmission | A scriptable variable-ratio gearbox. |
| directional_gearshift | A redstone-controlled gearshift with separate left and right power inputs that select between forward, reverse, and stop on the non-source faces. |
| gas_provider | Shared peripheral for gas-output blocks (burners, vents) that fill balloons. |
| gimbal_sensor | Inertial measurement on the body frame: pitch/roll angles, angular rates, gravity vector, and linear acceleration. |
| gyroscopic_propeller_bearing | Gyroscopic propeller bearing. |
| laser_pointer | A pointable laser. |
| laser_sensor | A laser-receiving sensor. |
| linked_typewriter | A typewriter that forwards keypresses to attached computers and exposes the currently held keys. |
| mounted_potato_cannon | A mounted potato cannon. |
| navigation_table | A navigation table. |
| physics_assembler | A physics assembler. |
| portable_engine | A fuel-burning engine. |
| propeller | Shared peripheral for all small propeller variants (wooden, andesite, smart). |
| propeller_bearing | A propeller bearing. |
| rope_winch | A kinetic rope winch. |
| steering_wheel | A pilot steering wheel. |
| swivel_bearing | A swivel bearing — Simulated's contraption assembler. |
| throttle_lever | A 16-position physical lever. |
| torsion_spring | A torsion spring. |
| velocity_sensor | A directional velocity sensor. |
| wheel_mount | One wheel of a vehicle. |
Guides
| Yielding peripheral calls and the parallel idiom | Many Create: Avionics peripherals expose setters that mutate world state — throttle_lever.setSignal, propeller_bearing.assemble |
|---|