Animation Studios Mechatron Robotics

November 30, 2021

Animation Studios Mechatron Robotics

November 30, 2021

Created By

About This Project

A big hello to all the people who are viewing our project, this project is one of its kind in the whole world. This is Mechatron’s very own animation studio, and not only is this about viewing the animation, you can actually control it!! Yes, you read it right this is an animation program you can control(told you it was one of its kind).


Animation Studios Mechatron Robotics project uses an Arduino uno R3( microcontroller ), a LCD and some push buttons.This project is solely based on the concepts and logics of the Arduino and the LCD.


From the TEAM,

Ishaan and Tusham

Tusham Agarwal

My name is Tusham. I am extremely interested in making new codes every day and I have made a lot of projects here at Mechatron Robotics. I have learnt a lot here and developed my skills and I hope to make my parents proud by excelling in the Robotics field.

Components Required

  • Arduino UNO
  • Alphanumeric LCD,16 X 2
  • Tactile switch ,Top Accucated

Schematics

In this image all the components with the connections are given

Code Of Project

   # 
 include 
 <LiquidCrystal.h> 
 
 LiquidCrystal 
 lcd 
 ( 
 12 
 , 
 11 
 , 
 5 
 , 
 4 
 , 
 3 
 , 
 2 
 ) 
 ; 
 int 
 cursor 
 = 
 7 
 ; 
const int 
l = 
 10 
 , 
d = 
 9 
 , 
u = 
 8 
 , 
r = 
 7 
 ; 
 byte 
customChar [ 
 ] 
 = 
 { 
B01110 , 
B01110 , 
B00100 , 
B11111 , 
B10101 , 
B00100 , 
B01010 , 
B11011 } 
 ; 
 byte 
customCharright [ 
 ] 
 = 
 { 
B00111 , 
B00111 , 
B00100 , 
B00111 , 
B00110 , 
B00101 , 
B01010 , 
B01001 } 
 ; 
 byte 
customCharleft [ 
 ] 
 = 
 { 
B11100 , 
B11100 , 
B00100 , 
B11100 , 
B01100 , 
B10100 , 
B01010 , 
B10010 } 
 ; 
 byte 
customCharup [ 
 ] 
 = 
 { 
B01110 , 
B01110 , 
B10101 , 
B01110 , 
B00100 , 
B00100 , 
B01010 , 
B11011 } 
 ; 
 byte 
left [ 
 ] 
 = 
 { 
B00100 , 
B00010 , 
B00001 , 
B11111 , 
B11111 , 
B00001 , 
B00010 , 
B00100 } 
 ; 
 byte 
right [ 
 ] 
 = 
 { 
B00100 , 
B01000 , 
B10000 , 
B11111 , 
B11111 , 
B10000 , 
B01000 , 
B00100 } 
 ; 
 void 
 setup 
 ( 
 ) 
 { 
lcd . 
 begin 
 ( 
 16 
 , 
 2 
 ) 
 ; 
 pinMode 
 ( 
l , 
 INPUT 
 ) 
 ; 
 pinMode 
 ( 
r , 
 INPUT 
 ) 
 ; 
 pinMode 
 ( 
u , 
 INPUT 
 ) 
 ; 
 pinMode 
 ( 
d , 
 INPUT 
 ) 
 ; 
lcd . 
 createChar 
 ( 
 0 
 , 
customChar ) 
 ; 
lcd . 
 createChar 
 ( 
 1 
 , 
left ) 
 ; 
lcd . 
 createChar 
 ( 
 2 
 , 
right ) 
 ; 
lcd . 
 createChar 
 ( 
 3 
 , 
customCharright ) 
 ; 
lcd . 
 createChar 
 ( 
 4 
 , 
customCharleft ) 
 ; 
lcd . 
 createChar 
 ( 
 5 
 , 
customCharup ) 
 ; 
lcd . 
 home 
 ( 
 ) 
 ; 
lcd . 
 print 
 ( 
 "Mechatron" 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
 8 
 , 
 1 
 ) 
 ; 
lcd . 
 print 
 ( 
 "Robotics" 
 ) 
 ; 
 delay 
 ( 
 2000 
 ) 
 ; 
 for 
 ( 
 int 
i = 
 0 
 ; 
i < 
 16 
 ; 
i ++ 
 ) 
 { 
lcd . 
 clear 
 ( 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
i , 
 0 
 ) 
 ; 
lcd . 
 write 
 ( 
 byte 
 ( 
 1 
 ) 
 ) 
 ; 
 delay 
 ( 
 50 
 ) 
 ; 
 } 
 for 
 ( 
 int 
i = 
 16 
 ; 
i >= 
 0 
 ; 
i -- 
 ) 
 { 
lcd . 
 clear 
 ( 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
i , 
 1 
 ) 
 ; 
lcd . 
 write 
 ( 
 byte 
 ( 
 2 
 ) 
 ) 
 ; 
 delay 
 ( 
 50 
 ) 
 ; 
 } 
lcd . 
 clear 
 ( 
 ) 
 ; 
 } 
 void 
 loop 
 ( 
 ) 
 { 
 //lcd.clear(); 
lcd . 
 setCursor 
 ( 
 cursor 
 , 
 0 
 ) 
 ; 
lcd . 
 write 
 ( 
 byte 
 ( 
 0 
 ) 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
 4 
 , 
 1 
 ) 
 ; 
lcd . 
 print 
 ( 
 "Move Me" 
 ) 
 ; 
 delay 
 ( 
 20 
 ) 
 ; 
 if 
 ( 
 digitalRead 
 ( 
r ) 
 == 
 HIGH 
 ) 
 { 
 if 
 ( 
 cursor 
 >= 
 0 
 && 
 cursor 
 < 
 16 
 ) 
 { 
 cursor 
 ++ 
 ; 
lcd . 
 clear 
 ( 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
 cursor 
 , 
 0 
 ) 
 ; 
lcd . 
 write 
 ( 
 byte 
 ( 
 3 
 ) 
 ) 
 ; 
 delay 
 ( 
 200 
 ) 
 ; 
 } 
 } 
 if 
 ( 
 digitalRead 
 ( 
l ) 
 == 
 HIGH 
 ) 
 { 
 if 
 ( 
 cursor 
 >= 
 0 
 && 
 cursor 
 < 
 16 
 ) 
 { 
 cursor 
 -- 
 ; 
lcd . 
 clear 
 ( 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
 cursor 
 , 
 0 
 ) 
 ; 
lcd . 
 write 
 ( 
 byte 
 ( 
 4 
 ) 
 ) 
 ; 
 delay 
 ( 
 200 
 ) 
 ; 
 } 
 } 
 if 
 ( 
 digitalRead 
 ( 
u ) 
 == 
 HIGH 
 ) 
 { 
 if 
 ( 
 cursor 
 >= 
 0 
 && 
 cursor 
 < 
 16 
 ) 
 { 
lcd . 
 clear 
 ( 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
 cursor 
 , 
 0 
 ) 
 ; 
lcd . 
 write 
 ( 
 byte 
 ( 
 5 
 ) 
 ) 
 ; 
 delay 
 ( 
 200 
 ) 
 ; 
 } 
 } 
 if 
 ( 
 digitalRead 
 ( 
d ) 
 == 
 HIGH 
 ) 
 { 
lcd . 
 clear 
 ( 
 ) 
 ; 
lcd . 
 setCursor 
 ( 
 cursor 
 , 
 1 
 ) 
 ; 
lcd . 
 write 
 ( 
 byte 
 ( 
 0 
 ) 
 ) 
 ; 
 delay 
 ( 
 200 
 ) 
 ; 
 } 
 } 
  
 
A person is using a laptop computer next to a robot.
By Siddhartha Kumar January 5, 2022
Robotics: Blessing and Curse? Robots have improved healthcare , surveillance, delivery of goods (drones), spacecraft, travel, logistics, etc.
A man is wearing a virtual reality headset and touching a screen.
By Tahreem Jamadar December 28, 2021
Is it time for 3D Printing to Adopt Blockchain Technology? Research has already shown 3D printing has a growing need for cybersecurity.
A group of children are sitting at a table making a robot.
By Dr. Heath Kirby-Miller December 25, 2021
Why STEM Education in Australia The Australian industries to be benefited from STEM include advanced information and communication technology
A red rc truck is sitting on top of a remote control.
December 12, 2021
Arduino IR remote controlled Car The project is arduino based project. the Links pf the projects are given below
A young boy wearing headphones is using a laptop computer.
By Kiran Gupta November 30, 2021
Machine Learning for Disables can help those disabled people to improve their lives. With the marvel of machine learning doctors
A man wearing a virtual reality headset is working on a robotic arm.
By Kiran Gupta November 7, 2021
What are the Consequences of Not Embracing Robotics & AI? We won’t be able to go ahead as these are the next big things.
A person is holding a remote control in a living room.
November 4, 2021
Home Automation System is made because today's light bulbs tend to heat and this can cause blast in the house.
A close up of a bottle of vaccine with a virus in the background.
By Rajesh Sharma November 1, 2021
Robotics and the Pandemic 2020. This is where Robotics can come in, robots can help reduce the human contact.
A person is playing with a robotic head on a table.
By Siddhartha Kumar November 1, 2021
Key Elements Most of the Schools are Missing. Everyone has different criteria but one key element remains the same:” The quality of teaching
A person is sitting at a table working on a mobile app.
By Megha Sutar October 20, 2021
Why Learning App & Game Development is Important for Your Kid? Today, most of the kids are taking interest in the Apps and Games
Show More
A person is using a laptop computer next to a robot.
By Siddhartha Kumar January 5, 2022
Robotics: Blessing and Curse? Robots have improved healthcare , surveillance, delivery of goods (drones), spacecraft, travel, logistics, etc.
A man is wearing a virtual reality headset and touching a screen.
By Tahreem Jamadar December 28, 2021
Is it time for 3D Printing to Adopt Blockchain Technology? Research has already shown 3D printing has a growing need for cybersecurity.
A group of children are sitting at a table making a robot.
By Dr. Heath Kirby-Miller December 25, 2021
Why STEM Education in Australia The Australian industries to be benefited from STEM include advanced information and communication technology
A red rc truck is sitting on top of a remote control.
December 12, 2021
Arduino IR remote controlled Car The project is arduino based project. the Links pf the projects are given below
A young boy wearing headphones is using a laptop computer.
By Kiran Gupta November 30, 2021
Machine Learning for Disables can help those disabled people to improve their lives. With the marvel of machine learning doctors
A man wearing a virtual reality headset is working on a robotic arm.
By Kiran Gupta November 7, 2021
What are the Consequences of Not Embracing Robotics & AI? We won’t be able to go ahead as these are the next big things.
A person is holding a remote control in a living room.
November 4, 2021
Home Automation System is made because today's light bulbs tend to heat and this can cause blast in the house.
A close up of a bottle of vaccine with a virus in the background.
By Rajesh Sharma November 1, 2021
Robotics and the Pandemic 2020. This is where Robotics can come in, robots can help reduce the human contact.
A person is playing with a robotic head on a table.
By Siddhartha Kumar November 1, 2021
Key Elements Most of the Schools are Missing. Everyone has different criteria but one key element remains the same:” The quality of teaching
Show More