1
0
mirror of https://gitlab.com/lander-team/concept-of-operations.git synced 2025-06-16 06:56:47 +00:00

added ignitor and battery to avionics

This commit is contained in:
Anson Biggs 2021-04-01 00:15:31 +00:00
parent 6aa3879ee3
commit ab56095ac7

View File

@ -33,6 +33,7 @@ g1 --> Ascent
%%{init: {'theme':'neutral'}}%%
flowchart LR;
batt[Battery]
t[Teensy 4.1]
imu[Inertial Measurement Unit]
b[Barometer]
@ -40,12 +41,14 @@ b[Barometer]
subgraph Propulsion
r[Roll Motor]
p[Pitch Motor]
e[Engine Ignitor]
end
imu & b -. I2C .-> t
batt == 3.3V ==> t
t -- PWM --> r & p
t -- PWM --> r & p & e
```