Skip to main content

Introducing New SUBJECT

As a product designer in making, I need to make prototypes and in today’s era there are minimal products which do not have a single circuit and uses only mechanics, products have come a long way and have become more and more automatic.
Like a a door is not just an entrance which is pushed to open, there are doors which open as soon as a human steps towards it. Simplest and biggest example of a product with sensors is right there with us right now our Smart phone.
It has got accelerometer, gyroscope, proximity, motion sensors and has got many functions more than to just call and connect with people.
To keep up with the world and make products in 2018 and further,  We needed to understand their working and  start using them in prototyping stage and to do that we should have basic level of understanding of available sensors , which are cheap, which one to use and to learn basic level programming .
So all of the above is true and for that reason this workshop was conducted for us in our college.
A new visitor faculty Sir Prem Sagar visited us for the purpose.
We had our 3 days interaction with him and what i learned is what i am going to upload here on this, it might help others umderstand and learn something new which is essential.


My friends who were with me in this new learning tour and people interested on topic can drop comments below… J.

Comments

  1. I guess we spent 5 days together on this journey to learn arduino. :P

    ReplyDelete

Post a Comment

Popular posts from this blog

Coding with ARDUINO

After understanding the connection making on bread board we connected our first output device- LED on Arduino board’s digital output pin 13, On the micro controller   pin 13 acted as positive terminal and GND- Ground act as zero or negative terminal.   (blinking aurdino led) it was blinking because the the reset code used was blink. The Coding for this command was - // 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   dela...