feedback and arduino video documentation bram

This commit is contained in:
Bram Barbieri
2024-02-27 20:22:33 +01:00
parent 79ec11a7a2
commit 1b594b503a
2 changed files with 52 additions and 0 deletions

View File

@@ -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.

View File

@@ -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