Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/capi-nemoo/roomatedetector

Simple herramienta para detectar la presencia de compañeros de cuarto usando un sensor PIR y enviar notificaciones por SMS.
https://github.com/capi-nemoo/roomatedetector

Last synced: about 1 month ago
JSON representation

Simple herramienta para detectar la presencia de compañeros de cuarto usando un sensor PIR y enviar notificaciones por SMS.

Awesome Lists containing this project

README

        

# RoomateDetector

```
RooMateDetector/
├── src/
│ ├── hardware/ # Código hardware
│ │ ├── pirSensor.ino
│ │ └── ... (otros archivos de hardware)
│ ├── server/ # servidor backend
│ │ ├── app.js
│ │ ├── routes/
│ │ │ ├── index.js
│ │ │ └── ... ( rutas)
│ │ ├── models/
│ │ │ ├── User.js
│ │ │ └── ... (otros modelos)
│ │ ├── controllers/
│ │ │ ├── notificationController.js
│ │ │ └── ... (otros controladores)
│ │ ├── config/
│ │ │ ├── database.js
│ │ │ └── ... (configuración)
│ │ └── utils/
│ │ ├── sendSMS.js
│ │ └── ... (otros utilitarios)
├── tests/
│ ├── hardware/
│ ├── server/
│ │ ├── routes/
│ │ ├── models/
│ │ ├── controllers/
│ │ └── utils/
│ └── ... (otros tests)
├── .gitignore
├── package.json
├── README.md
└── docs/
├── setup.md
├── usage.md
└── api_reference.md