2024-10-22 15:30:11 +00:00
|
|
|
---
|
|
|
|
title: Listening Daemon
|
|
|
|
subtitle: Git Repository
|
|
|
|
date: Tuesday, October 22, 2024
|
|
|
|
---
|
2024-10-22 15:09:20 +00:00
|
|
|
|
2024-10-22 15:30:11 +00:00
|
|
|
# Listening Daemon
|
|
|
|
|
|
|
|
Current structure of the repository
|
|
|
|
|
|
|
|
```
|
|
|
|
.
|
|
|
|
├── arduino
|
|
|
|
│ ├── motor_shield_one
|
|
|
|
│ │ ├── makefile
|
|
|
|
│ │ └── motor_shield_one.ino
|
|
|
|
│ ├── motor_shield_two
|
|
|
|
│ │ ├── makefile
|
|
|
|
│ │ └── motor_shield_two.ino
|
|
|
|
│ ├── relay_shield
|
|
|
|
│ │ ├── makefile
|
|
|
|
│ │ └── relay_shield.ino
|
|
|
|
│ └── sensors
|
|
|
|
│ ├── makefile
|
|
|
|
│ └── sensors.ino
|
|
|
|
└── tidal
|
|
|
|
├── boot
|
|
|
|
└── compositions
|
|
|
|
```
|
|
|
|
|
|
|
|
The `arduino` directory contains code for each microcontroller.
|
|
|
|
|
|
|
|
|
|
|
|
The `tidal` directory features a combination of boot files and
|
|
|
|
compositions.
|