From 4cc7c2fa8b1f57b82efbd5fa29e8322fc68df957 Mon Sep 17 00:00:00 2001 From: Sietse Jonker Date: Tue, 13 Feb 2024 16:24:02 +0100 Subject: [PATCH] Add node power information and author details --- docs/node-documentation/node-sensors.md | 6 +++++- docs/rpi-documentation/mariadb-installation.md | 4 +++- docs/rpi-documentation/phpmyadmin-installation.md | 2 ++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/node-documentation/node-sensors.md b/docs/node-documentation/node-sensors.md index df55b5b..f654fa3 100644 --- a/docs/node-documentation/node-sensors.md +++ b/docs/node-documentation/node-sensors.md @@ -19,4 +19,8 @@ We chose these sensors because they are cheap to buy and don't require a lot of ## Appearance of the nodes -Every node has the sensors listed above. The also have a little oled screen to display the current situation in the environment. This is used to show the current temperature, humidity, eCO2, TVOC. Next to it is also a little led matrix which will show the current sound level. \ No newline at end of file +Every node has the sensors listed above. The also have a little oled screen to display the current situation in the environment. This is used to show the current temperature, humidity, eCO2, TVOC. Next to it is also a little led matrix which will show the current sound level. + +## Power + +The nodes are powered by 2 lithium batteries. They will be removable to charge them. We might consider using double A batteries, but we are not sure yet, since lithium batteries are more powerful, last longer and AA batteries are not rechargeable, and we want to make the nodes as sustainable as possible. \ No newline at end of file diff --git a/docs/rpi-documentation/mariadb-installation.md b/docs/rpi-documentation/mariadb-installation.md index 85f2e0a..b561b6b 100644 --- a/docs/rpi-documentation/mariadb-installation.md +++ b/docs/rpi-documentation/mariadb-installation.md @@ -34,4 +34,6 @@ We have to create a user for the database. This is done by running the following GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; ``` -Replace username with the username you want to use and password with the password you want to use. This will create a user with all privileges on all databases. If you want to create a user with less privileges you can change the ALL PRIVILEGES to the privileges you want to give the user. We chose to give the user all privileges to make it easy for us to use the database. \ No newline at end of file +Replace username with the username you want to use and password with the password you want to use. This will create a user with all privileges on all databases. If you want to create a user with less privileges you can change the ALL PRIVILEGES to the privileges you want to give the user. We chose to give the user all privileges to make it easy for us to use the database. + +**Written by Sietse** \ No newline at end of file diff --git a/docs/rpi-documentation/phpmyadmin-installation.md b/docs/rpi-documentation/phpmyadmin-installation.md index 6a5e073..0b4d7ae 100644 --- a/docs/rpi-documentation/phpmyadmin-installation.md +++ b/docs/rpi-documentation/phpmyadmin-installation.md @@ -18,3 +18,5 @@ $ sudo apt install php ``` After this we could use phpmyadmin, access the database we've created and start using it. + +**Written by Sietse** \ No newline at end of file