Skip to main content

Posts

Showing posts from December, 2017

Touch Sensor Module along with Small DC Motor Project for Arduino

Touch Sensor with Arduino With Following tutorial, you will be able to use Arduino digital input and output pins. To replicate exact results of this tutorial you will be required following 1. Arduino Uno 2. Capacitive Touch sensor  Buy Now 3.  Small 3V DC Toy Motor For Arduino Buy Now Procedure:  Connect Arduino Uno to PC for power and programming Connect Touch sensor's VCC pin to Arduino 3.3V output pin. Connect Touch Sensor's GND pin to any of Arduino ground pin. Connect Touch Sensor's SIG input to any digital input of Arduino pin (1-13) I am connecting to digital pin 3  Connect DC motor one leg to Digital Pin 13 and another leg to ground. Program Arduino with the following sketch. #define TOUCH 3 //the touch sensor is connected to D3 int DCMOTOR = 13; // pin for the DC motor.    void setup()  { pinMode(DCMOTOR, OUTPUT); pinMode(TOUCH, INPUT); }    void loop()  { int sensorValue = digitalRead(TOUCH);

Welcome Note

Smart Embedded Creations  Smart Embedded Creations is a new blog for the embedded enthusiast. We find thousands of websites and solutions on the particular embedded idea, but many times it misses the small things which author assumes that everyone knows and he skips it. Also, many facts from an industry point of view are missing. In my blog, I will try to concentrate on such small things which actually very simple but very essential for embedded development. I will be addressing introduction to few embedded open source platforms, few firmware solutions, embedded Linux guide, IOT platform and many more Please let me know by your comments so that together we can build a better-embedded world. Thanks & Regards, Vaibhav Kambli