Thursday, 23 June 2016

Saturday, 18 June 2016

Tutorial 2: First program on Arduino board

In the first chapter we see the pin mapping of ATmega 168 to get idea about which pins are used in Arduino Uno. Now we are going to see the programming in Arduino IDE. You can download it from the official website of Arduino. Also you can learn the tutorial or libraries or keywords for programming.


Program 
1) It consists of two parts one is void setup () and another one is void loop(). 
2) First, void loop () get executed for only once,whereas void loop () is used to execute it continuously. 
3) for example :

void setup() 
{
Serial.begin(9600);
}
void loop() 
{
Serial.println("hello, world... ") ;
The above program will print hello world on serial monitor...!!!! 

In next tutorial we'll start with basics of Arduino IDE

Friday, 17 June 2016

Arduino pin mapping

Above picture shows pin mapping of Arduino Uno in which AVR ATMEGA 168 is used as it is a Microcontroller in the board. It is having 6 Analog Pins and 14 digital pins. It's also consist of PWM pins. 

Arduino Basics

Hiii... This is the tutorial for arduino Basics... We'll be starting tomorrow stay tuned for my projects also... 

How to Run JAVA Program in Ubuntu

HOW TO RUN A JAVA PROGRAM IN UBUNTU 18.04 LTS Check out our channel and Subscribe for more SPARKY HACKS