Skip to content

Commit

Permalink
Readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio committed Dec 19, 2020
1 parent 3a95dda commit 6b783f2
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 9 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Mini estaciones DIY para medir diferentes gases y contaminantes presentes en el
* https://onlinelibrary.wiley.com/doi/full/10.1034/j.1600-0668.2003.00153.x

## Proyectos Open Source relacionados
- Proyecto inspiracional Firebase IoT (https://github.com/kaizoku-oh/firebase-iot-demo)
- ESP8266 + Firebase (https://github.com/mobizt/Firebase-ESP8266)
- https://github.com/UlisesGascon/Calidad-del-Aire
- http://www.instructables.com/id/Air-Pollution-Detector/
- http://www.instructables.com/id/AtmoScan/
Expand All @@ -46,7 +48,17 @@ Aún por definir

## Tecnologías

* Arduino IDE (C/C++)
* Node
* Firebase SDK
### Hardware
* PlatformIO IDE - Integrado con VSCode (https://platformio.org/)
* Arduino IDE (https://www.arduino.cc/en/software)
* Generar JSON desde C++ (https://github.com/bblanchon/ArduinoJson/)
* Librerias Firebase para Arduino (https://github.com/FirebaseExtended/firebase-arduino)
* Librerías para NTP (https://github.com/arduino-libraries/NTPClient)

### Software
* Firebase SDK (https://firebase.google.com/docs/)
* Vue3 (https://v3.vuejs.org/)
* Librería de componentes para Vue3 (https://primefaces.org/primevue/)
* Librería de gráficos y diagramas integrada con Vue (https://apexcharts.com/)
* App Web/Android?

2 changes: 1 addition & 1 deletion client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<title><%= htmlWebpackPlugin.options.title %></title>
<title>OSW OpenHardware - Proyecto miniestaciones</title>
<link
rel="stylesheet"
href="//fonts.googleapis.com/css?family=Roboto:400,500,700,400italic|Material+Icons"
Expand Down
26 changes: 21 additions & 5 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,27 @@
},
"hosting": {
"public": "client/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
"headers": [
{
"source": "/**",
"headers": [
{
"key": "Cache-Control",
"value": "no-cache, no-store, must-revalidate"
}
]
},
{
"source": "**/*.@(jpg|jpeg|gif|png|svg|webp|js|css|eot|otf|ttf|ttc|woff|woff2|font.css)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=604800"
}
]
}
],
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
},
"emulators": {
"functions": {
Expand Down

0 comments on commit 6b783f2

Please sign in to comment.