Achievements and projects 1. The Game My friends and I created a game called “Realm of the Sea”. At the beginning we were three people. I was a character developer Arthy(Friend) was also a character developer. Louis(Friend) was the person who codes and setup the server for the game. The idea behind the game was multiplayer inside water, where people will spawn in their lobbies, press the ready button and then appear at different locations inside the sea. We started to create different characters for the game and here are some pictures. 2. The speaker I started working in the design class and thought of a cool idea to create a speaker but as I was curious I did not want it to look just like the other speakers on the internet. I looked up the shape of geodesic domes on the internet and found some things similar to this shape. Then I annotated the picture according to the speaker I had at home. The speaker size was 12cm. ; I used the concept of the geodesic dome and cut off the top for the space of speakers. I created one more copy of this and decided to stuck it together. Then I added the parts: 2 x 30 watts speaker Wireless Bluetooth 4.0 Audio Reciever Digital Amplifier Board The exterior of the bluetooth speaker made with wood Picture of two speakers connected to the Amplifier board (Picture of the exterior of the speaker created with wood) The final result looks like this: 3. Laser Projector I create a laser projector in Design class which makes patterns: Here is the process and How I created it with the prototype in the early design making. Plans and stages to my final product-: Mockups 1) ( Laser pointer taped on a cardboard ) 2) Circular piece of cardboard 3) Mirror glued on the cylinder shape of paper 4) Live! Use of the final mockup piece Now, the real product-: Working laser in the laser projector Final Product with mirrors: Final Product without the strips Final Product with mirrors: 4. Arduino Car with my own design I have also created an Arduino car: Here are the parts list; 1. 2. 3. 4. 5. 6. 4 DC motors Arduino Uno Copper Wires 4 Rubber Tires L289n Motor Driver Square Wooden Board I used several software in order for my product to work and get moving. I used Arduino Ide where I wrote a piece of code Here is the file ----------------------------------------------------------------------------------------------------------// Motor A connections int enA = 9; int in1 = 8; int in2 = 7; // Motor B connections int enB = 3; int in3 = 5; int in4 = 4; void setup() { // Set all the motor control pins to outputs pinMode(enA, OUTPUT); pinMode(enB, OUTPUT); pinMode(in1, OUTPUT); pinMode(in2, OUTPUT); pinMode(in3, OUTPUT); pinMode(in4, OUTPUT); // Turn off motors - Initial state digitalWrite(in1, LOW); digitalWrite(in2, LOW); digitalWrite(in3, LOW); digitalWrite(in4, LOW); } void loop() { directionControl(); delay(1000); speedControl(); delay(1000); } // This function lets you control spinning direction of motors void directionControl() { // Set motors to maximum speed // For PWM maximum possible values are 0 to 255 analogWrite(enA, 200); analogWrite(enB, 255); // Turn on motor A & B digitalWrite(in1, HIGH); digitalWrite(in2, LOW); digitalWrite(in3, HIGH); digitalWrite(in4, HIGH); delay(2000); } // This function lets you control speed of the motors void speedControl() { // Turn on motors digitalWrite(in1, HIGH); digitalWrite(in2, LOW); digitalWrite(in3, HIGH); digitalWrite(in4, LOW); // Accelerate from zero to maximum speed for (int i = 0; i < 256; i++) { analogWrite(enA, i); analogWrite(enB, i); delay(20); } // Decelerate from maximum speed to zero for (int i = 255; i >= 0; --i) { analogWrite(enA, i); analogWrite(enB, i); delay(20); } } -----------------------------------------------------------------------------------------------------------Here are some of the pictures of the final product: Here is the circuit diagram to what I created from another website- Here’s the websitehttps://www.hackster.io/dhritimanhb2015/how-to-make-bluetooth-controlled-car-u sing-arduino-uno-r3-h-07bc57 5. Arcade Machine 6. Machine and Deep Learning Project I took notes about machine learning in Obsidian 2 and read a book called HandsonML. 7. Running 10 Km every day for 6 months Results 134,835 steps = 107.838 Km 199,253 steps = 159.396 Km 226,099 steps = 180KM 223,339 steps = 178.12 Km 129,628 steps = 103.74Km 252,258 steps = 201.864Km 328,387 Steps = 262.79Km Total Km ran over 6 months = 1193,748 Km