This week I worked on comparing Onshape, Fusion and Rhino first and at last I choose to learn Fusion as a CAD software tools for my final project.
h This week involved a comparative analysis of Onshape, Fusion 360, and Rhino for my final project. After weighing the pros and cons, I've selected Fusion 360 as my CAD platform of choice. I found its integrated workflow from design to manufacturing to be the most suitable for the scope of my work.
This week, I learned how to modify the HTML content and Git Operations, also sketch the idea on paper
// 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
}