Posts

Showing posts from January, 2018

How to Install Raspbian OS in Raspberry Pi A,A+,B,B+& Zero W

Image
           How to Install Rasbian Os :D win 32 Disk image software :)   win 32 disk image SD Card Formatter :)   SD Card Formatter Rasbian OS :)   Rasbian OS Raspberry Pi kit :)  http://amzn.in/0Yg7UHG Cable :)   http://amzn.in/grTi5xc VGA to HDMI :)  http://amzn.in/b3dfa4T

How to Use Bluetooth Module to Arduino and Make Android App to Interfaci...

Image
                 How to Use Bluetooth Module to Arduino and Make Android App to Interfacing a Arduino HC 05 Bluetooth Module :D       http://amzn.in/ebpLfZQ Arduino:D      http://amzn.in/2uTWZfr Jumper Wires:D        http://amzn.in/cgcrJ7w Servo Motor:D        http://amzn.in/27Uv8N4 App Link:D http://ai2.appinventor.mit.edu/                                                          Step 1:)                                                                   Open This Link                     ...

Program Arduino using Smart phone

Image
app link                 https://play.google.com/store/apps/details?id=name.antonsmirnov.android.arduinodroid2&hl=en Hello Friends in this video iam showing only basic code because it this not working many library code  OTG LINK: ) http://amzn.in/8OS0Snd Arduino Nano: ) http://amzn.in/iQrNVPF Arduino Uno:) https://www.amazon.in/gp/product/B0182PJ582/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B0182PJ582&linkId=e30f6090dfc4e9e73d85558c3570b78f

L293D Motor Shield Control Servo Motor In Tamil

Image
L293D Motor Shield Control Servo Motor In Tamil Arduino Board :D https://www.amazon.in/gp/product/B0182PJ582/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B0182PJ582&linkId=e30f6090dfc4e9e73d85558c3570b78f Servo :D https://www.amazon.in/gp/product/B06Y55KR9J/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B06Y55KR9J&linkId=10fe49fa54c180eb67a4824e7be99f4c L293D Motor Shield :D https://www.amazon.in/gp/product/B01HPQ48MC/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B01HPQ48MC&linkId=c1e39b91071dd0ae6c2baf556fe8800b Code Link :) //Zeeatech// //plz subscribe// #include <Servo.h> Servo myservo;  int pos = 0;    void setup() {   myservo.attach(10);  } void loop() {   for (pos = 0; pos <= 180; pos += 1) {      // in steps of ...

Control Servo using 10k potentiometer in Tamil

Image
10k potentiometer :D  https://www.amazon.in/gp/product/B011E9A6GS/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B011E9A6GS&linkId=8cff633c0377ed39d58260fd1b73ae31 Arduino Board :D https://www.amazon.in/gp/product/B0182PJ582/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B0182PJ582&linkId=e30f6090dfc4e9e73d85558c3570b78f Servo :D https://www.amazon.in/gp/product/B06Y55KR9J/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B06Y55KR9J&linkId=10fe49fa54c180eb67a4824e7be99f4c Code link :D          //Zeeatech// //plz Subscribe// #include <val.h> val myval;  int potpin = 0;   int val;     void setup() {   myval.attach(9);   } void loop() {   val = a...

servo and arduino in tamil

Image
Arduino Board :D https://www.amazon.in/gp/product/B0182PJ582/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B0182PJ582&linkId=e30f6090dfc4e9e73d85558c3570b78f Servo :D https://www.amazon.in/gp/product/B06Y55KR9J/ref=as_li_tl?ie=UTF8&tag=mobile0b4d-21&camp=3638&creative=24630&linkCode=as2&creativeASIN=B06Y55KR9J&linkId=10fe49fa54c180eb67a4824e7be99f4c Circuit diagram Code :-       //Zeeatech// #include <Servo.h> Servo myservo;  int pos = 0;  void setup() {   myservo.attach(9);  } void loop() {   for (pos = 0; pos <= 180; pos += 1) {     // in steps of 1 degree     myservo.write(pos);                  delay(15);                        }   for (pos = 180; pos >= 0; pos -= 1) { ...

Arduino program in tamil

Image
Arduino Software :- https://www.arduino.cc/en/Main/Software Arduino board :)   https://www.amazon.in/gp/product/B0755PDM8S/ref=as_li_tl?ie=UTF8&camp=3638&creative=24630&creativeASIN=B0755PDM8S&linkCode=as2&tag=mobile0f7b-21&linkId=75dee637fcbe8077a65e72a9b30c3a14 Code :) //plz subscribe// //To Zeea Tech// int led = 13; void setup() { pinMode (led,OUTPUT); } void loop() { digitalWrite (led,HIGH); delay (1000); digitalWrite (led,LOW); delay (1000); }