1. Principles and practices¶
This week I worked on defining my final project idea and started to getting used to the documentation process.
Kerf¶
In order to calculate the kerf we decided to cut 5 squares that are 2cm x 2cm We will then measure the actual size and calculate the difference which should be the kerf.
We initially decided to line them up and measure them together to get the average but quicly realized the cut was not 90 degree.
As you can see when we flipped 2 of the squares we saw a diffefrent
Useful links¶
Code Example¶
Use the three backticks to separate code.
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Gallery¶
Video¶
From Vimeo¶
Sound Waves from George Gally (Radarboy) on Vimeo.
From Youtube¶
3D Models¶
Use HTML¶
You may also embed HTML in your markdown files
Try having a seperator line
ID | First Name | Last Name |
---|---|---|
235312 | John | Doe |
453123 | Mark | Jones |
998332 | Jonathan | Smith |
345612 | Andrew | McArthur |
453123 | Adam | Fuller |
Last update:
February 14, 2023