Saturday, 24 February 2018

From Now On wards I will teach you to make Arduino projects

So our very first project is to blink a LED using Arduino
So let's start it
Here is a fritzing diagram to you to blink an LED







Put the negative pin of LED to the GND pin
Put the positive pin of LED to pin no 13 of the Arduino Board



Here is the code
_________________________________________________________________________________

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
  delay(1000);                       // wait for a second
}
_________________________________________________________________________________











If you have any inquiry you can comment on the comment section

 For Video tutorial you can subscribe my channel
Techboy Arduino

How to differentiate between FAKE and ORIGINAL ARDUINO

Today I ll show you the picture of fake and original ARDUINO so, you can differentiate between them 



ORIGINAL ARDUINO UNO




FAKE ARDUINO UNO

Saturday, 23 December 2017

SHIELDS OF ARDUINO UNO

Main Shields of Arduino-

  • Motor Shield
  • LCD Shields
  • Ethernet Shield

TYPES OF SENSORS OF ARDUINO

There are many types of arduino sensor 

There are total 37 types of main sensors of arduino-

TYPES OF ARDUINO

THERE ARE MANY TYPES OF ARDUINO SOME ARE MENTIONED HERE
Arduino UNO, Arduino Lilypad, Arduino Zero, Arduino MKR WAN 1300, Arduino leonardo
etc.

INTRO TO ARDUINO

INTRODUCTION
Arduino is an open-source platform used for building electronics projects. Arduino consists of both a physical programmable circuit board (often referred to as a microcontroller ) and a piece of software, or IDE (Integrated Development Environment) that runs on your computer, used to write and upload computer code to the physical board.
The Arduino platform has become quite popular with people just starting out with electronics, and for good reason. Unlike most previous programmable circuit boards, the Arduino does not need a separate piece of hardware (called a programmer) in order to load new code onto the board – you can simply use a USB cable. Additionally, the Arduino IDE uses a simplified version of C++, making it easier to learn to program. Finally, Arduino provides a standard form factor that breaks out the functions of the micro-controller into a more accessible package.
more on arduino.cc

WHAT IS ARDUINO !!!

Hello Guys! I am TechBoy and I am going to tell you about ARDUINO , so let's start it !! Arduino ( Open source electronic prototyping platform )is a motherboard containing all the things Capacitors, micro controller (ATmega328), resistors, pins etc

From Now On wards I will teach you to make Arduino projects

So our very first project is to blink a LED using Arduino So let's start it Here is a fritzing diagram to you to blink an LED ...