From 8722f8908754b2a97d7e54ff72dc7018db612133 Mon Sep 17 00:00:00 2001 From: sietse jonker Date: Tue, 13 Feb 2024 22:31:16 +0100 Subject: [PATCH 1/2] Update MariaDB user in installation documentation --- docs/rpi-documentation/mariadb-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rpi-documentation/mariadb-installation.md b/docs/rpi-documentation/mariadb-installation.md index b561b6b..9b4a303 100644 --- a/docs/rpi-documentation/mariadb-installation.md +++ b/docs/rpi-documentation/mariadb-installation.md @@ -31,7 +31,7 @@ Now we are logged in to the database. We have created our database by using the We have to create a user for the database. This is done by running the following command: ```sql -GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; +GRANT ALL PRIVILEGES ON *.* TO 'root'@'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. From f459ac8359f0c22edb75349f66122bd8dcc0ae65 Mon Sep 17 00:00:00 2001 From: Bram Barbieri Date: Tue, 13 Feb 2024 22:57:31 +0100 Subject: [PATCH 2/2] Bram INformatie bijgeleerd over Buzzers, gedocumenteerd voor bewijs. --- docs/{leerproces Bram => LearningProcessBram}/.gitkeep | 0 docs/LearningProcessBram/Sprint1/FirstDocumentation.md | 9 +++++++++ 2 files changed, 9 insertions(+) rename docs/{leerproces Bram => LearningProcessBram}/.gitkeep (100%) create mode 100644 docs/LearningProcessBram/Sprint1/FirstDocumentation.md diff --git a/docs/leerproces Bram/.gitkeep b/docs/LearningProcessBram/.gitkeep similarity index 100% rename from docs/leerproces Bram/.gitkeep rename to docs/LearningProcessBram/.gitkeep diff --git a/docs/LearningProcessBram/Sprint1/FirstDocumentation.md b/docs/LearningProcessBram/Sprint1/FirstDocumentation.md new file mode 100644 index 0000000..aa3f45e --- /dev/null +++ b/docs/LearningProcessBram/Sprint1/FirstDocumentation.md @@ -0,0 +1,9 @@ +## Bram's Learning Curve +Here i post my progress on learning and mastering arduino. I originally did the Gamedevelopment study but decided to switch to "Technische Informatica". That is why i need to learn everything from scratch, and everything is new to me. +This is the reason that i made these documents, in order to track my progression in this new study. + + +### Buzzer +For one of my first projects I wanted to learn how to use a buzzer with different notes. +To achieve this, i went on a search accross sites to see how i can use frequenties to make different sounds. +Then i came accross a teaching site (https://www.codingkids.nl/arduino-buzzer.html) that taught me the language to communicate to the buzzer what frequenties to use. This way i can make any sound come out of this simple buzzer.