From 1b594b503a264dd6044817265a3072c04a67bbc5 Mon Sep 17 00:00:00 2001 From: Bram Barbieri Date: Tue, 27 Feb 2024 20:22:33 +0100 Subject: [PATCH 1/2] feedback and arduino video documentation bram --- .../LearningProcessBram/Sprint1/FeedbackRetro | 3 ++ .../Sprint1/FirstDocumentation.md | 49 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 docs/LearningProcessBram/Sprint1/FeedbackRetro diff --git a/docs/LearningProcessBram/Sprint1/FeedbackRetro b/docs/LearningProcessBram/Sprint1/FeedbackRetro new file mode 100644 index 0000000..ef76027 --- /dev/null +++ b/docs/LearningProcessBram/Sprint1/FeedbackRetro @@ -0,0 +1,3 @@ +## Personal Learning +Keep documenting my personal progression, but ad my personal way of learning, like video's and such. +Do update the Team document, because the current version has a bit too much generic points. \ No newline at end of file diff --git a/docs/LearningProcessBram/Sprint1/FirstDocumentation.md b/docs/LearningProcessBram/Sprint1/FirstDocumentation.md index aa3f45e..dc02e50 100644 --- a/docs/LearningProcessBram/Sprint1/FirstDocumentation.md +++ b/docs/LearningProcessBram/Sprint1/FirstDocumentation.md @@ -7,3 +7,52 @@ This is the reason that i made these documents, in order to track my progression 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. + +### Arduino Video +I watched a video about using arduino and took alot op notes along the way. +The link is: (https://www.youtube.com/watch?v=BLrHTHUjPuw). + +\/\/arduino information: + +\/pinnumber(locatie, in-/output) + +\/digitalwrite(locatie, high/low) + +\/delay(time in millisec) + +\/int... <- variable +\/with a decimal its a double -> 1,2 +\/a character is a char -> "a" + +\/\/serial communications: +\/setup: +Serial.begin(9600) -> the text speed +Serial.sprintLn(text) + +\/Loop: +Serial.print("text") +Serial.printLn(....) -> variable because no " + +\/Ctrl + shift + M = serial monitor. +The text speed needs to be the same as given. + +\/\/If Statements: +if(condition){ + action +}else{ + action +} + +\/&& = "and" +\/|| = "or" + +\/\/For loops: +For(int*i; i <= 10 ; i++){ + serial.print(i) +} + +\/The fading of led's: +examples, basics, fade + +\/ servo's +examples, servo, sweep From 982a275aa021fbb48976aa363b22cb1548720d77 Mon Sep 17 00:00:00 2001 From: Bram Barbieri Date: Tue, 27 Feb 2024 20:45:42 +0100 Subject: [PATCH 2/2] linux and rapsberry documentation bram --- .../Sprint1/FirstDocumentation.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/LearningProcessBram/Sprint1/FirstDocumentation.md b/docs/LearningProcessBram/Sprint1/FirstDocumentation.md index dc02e50..4fd608a 100644 --- a/docs/LearningProcessBram/Sprint1/FirstDocumentation.md +++ b/docs/LearningProcessBram/Sprint1/FirstDocumentation.md @@ -56,3 +56,19 @@ examples, basics, fade \/ servo's examples, servo, sweep + +### Linux and raspberrypi. +To gain more knowledge about linux, i first asked my class mates if they could get me started. +They showed me how to gain acces to a server, and told me how to navigate through files. +By doing this i got taught the following commands: + +~ $ 'ls -la' = show file / volders +~ $ 'top' = see currently running programs +~ $ 'cd ' = change directory +~ $ 'mkdir name' = make directory +~ $ 'touch name' = make file +~ $ 'ping ip addres' +~ $ 'ssh username@ip address' = open ssh connection. + +From here i went and looked up several linux video's wich taught me the following: +