Components
| Component | Datasheet | Additional Info |
|---|---|---|
| ESP32 | Datasheet (PDF) | |
| Gyroscope GY91 | Datasheet (PDF) | |
| (Gyroscope) 9250A Chip | Datasheet (PDF) | Register map (PDF) |
| Microphone INMP441 | Datasheet (PDF) | |
| RTC | Datasheet (PDF) | |
| SD Card Module | Datasheet (PDF) | |
| Temperature sensor GY906T1 | Datasheet (PDF) |
flowchart TB
subgraph Moometer V1
subgraph M1[Module #1]
TEMP[Temp\nSensor] --> ESP32
ESP32((ESP32)) --- TEMP
RTC[RTC š] ---> ESP32
Battery ---> ESP32
ESP32 <--> SD[SD CARD]
end
subgraph M2[Module #2]
direction TB
MIC[Microphone\nš¤] --> ESP32
ESP32 --> MIC
GYRO[Gyroscope\nSensor] --> ESP32
ESP32 ---> GYRO
end
end
linkStyle 1,3,6,8 stroke:yellow;
linkStyle 0,2,4,5,7 stroke:blue;