Document on the Arduino programming will be Coming soon..!
Stay tuned with us.
Translate
Monday, 26 December 2016
The Arduino programming
Wednesday, 21 December 2016
Digital up-down visitor's counter
A very interesting and practically applicable project....
It counts and de-counts object or Visitors
By using 2 proximity sensors.
Hope you people like it..
https://drive.google.com/file/d/0B1-Y-GZQ_x1jNWpvVkxrWGhNMW8/view?usp=drivesdk
My embedded booklet
The complete embedded systems programming architecture document package...
1) the 8051
http://embedded4me.blogspot.in/2016/10/the-basic-8051-programming-in-c.html?m=0
2) the AVR
http://embedded4me.blogspot.in/2016/11/the-avr-microcontroller-and-programming.html?m=0
3) the PIC
http://embedded4me.blogspot.in/2016/12/the-pic-microcontroller-and-programming.html?m=0
Matlab+GUI+Arduino
Refer following YouTube video.
If found helpful ..ask for complete code and design..
Leave a comment after download.
https://youtu.be/STIdqbpZVJI
Monday, 19 December 2016
The PIC microcontroller and programming
Refer following link which contains a pdf document on PIC microcontroller programming and simulation..
Please kindly leave a comment after download
https://drive.google.com/file/d/0B1-Y-GZQ_x1jb1B3b3A1N18wems/view?usp=drivesdk
Saturday, 17 December 2016
Friday, 16 December 2016
2 LEVEL DC ADAPTER
conversion of 230V AC to 5V and 12 V DC...
Refer following image...
Leave a comment after download..
Wednesday, 30 November 2016
Installing Arduino virtual board in proteus
https://drive.google.com/folderview?id=0B1-Y-GZQ_x1jZW4xN2xDSEpFNkU
Sunday, 27 November 2016
The AVR MICROCONTROLLER AND PROGRAMMING
Here is my new tutorial document on AVR atmega 32 programming...
Hope you find it helpful.
https://drive.google.com/file/d/0B1-Y-GZQ_x1jN1p2VXRTUkd2aUE/view?usp=drivesdk
Please leave a comment after downloading and using.
Saturday, 29 October 2016
Happy Diwali
Wish you a prosperous and wealthy Diwali and may godess lakshmi sprays money and wellbeing..
From
Manishkumar bante
Embedded4me.blogspot.in
Tuesday, 25 October 2016
How to use kiel uvision software
Download the below document for kiel uvision software for compilation
https://drive.google.com/file/d/0B1-Y-GZQ_x1jQng0cU13RkRmNXM/view?usp=drivesdk
The basic 8051 programming in C
Refer the following document for complete 8051 programming basics and simulation on proteus software.
Please leave a comment after download.
https://drive.google.com/file/d/0B1-Y-GZQ_x1jdDZhVVU4dE0tbEE/view?usp=drivesdk
Sunday, 16 October 2016
Raspberry pi camera image capturing
from time import sleep from picamera
import PiCamera camera = PiCamera()
camera.resolution = (1024, 768)
camera.start_preview()
sleep(2)
camera.capture('foo.jpg')
At command set for GSM
Download the following command sets for GSM300/900 MODULE
https://drive.google.com/file/d/0B1-Y-GZQ_x1jeW92WFJsa0Ytdkk/view?usp=drivesdk
Friday, 14 October 2016
advel app for arduino control
Sunday, 2 October 2016
Advel automation technologies
This is official sub-blog for
ADVEL AUTOMATIONS..
We provide distance workshop on Arduino programming and embedded systems..
More details will be informed soon..
Stay tuned with us.
Thursday, 29 September 2016
Arduino_basic digital_blink
Blink
This example shows the simplest thing you can do with an Arduino or Genuino to see physical output: it blinks an LED.
Hardware Required
Arduino or Genuino Board, LED,220 ohm resistor.
Circuit
To build the circuit, connect one end of the resistor to Arduino pin 13. Connect the long leg of the LED (the positive leg, called the anode) to the other end of the resistor. Connect the short leg of the LED (the negative leg, called the cathode) to the Arduino GND, as shown in the diagram and the schematic below.
The value of the resistor in series with the LED may be of a different value than 220 ohm; the LED will lit up also with values up to 1K ohm.
After you build the circuit plug your Arduino or Genuino board into your computer, start the Arduino Software (IDE) and enter the code below. The first thing you do is to initialize pin 13 as an output pin with the line
pinMode(13, OUTPUT);
In the main loop, you turn the LED on with the line:
digitalWrite(13, HIGH);
This supplies 5 volts to pin 13. That creates a voltage difference across the pins of the LED, and lights it up. Then you turn it off with the line:
digitalWrite(13, LOW);
That takes pin 13 back to 0 volts, and turns the LED off. In between the on and the off, you want enough time for a person to see the change, so the delay() commands tell the board to do nothing for 1000 milliseconds, or one second. When you use the delay() command, nothing else happens for that amount of time.
/*
Turns on an LED on for one second, then off for one second, repeatedly.
Most Arduinos have an on-board LED you can control. On the Uno and
Leonardo, it is attached to digital pin 13.
*/
// the setup function runs once when you press reset or power the board
void setup ( )
{
// initialize digital pin 13 as an output.
pinMode ( 13 , OUTPUT ) ;
}
// the loop function runs over and over again forever
void loop ( )
{
digitalWrite ( 13 , HIGH ) ; // turn the LED on (HIGH is the voltage level)
delay ( 1000 ) ; // wait for a second
digitalWrite ( 13 , LOW ) ; // turn the LED off by making the voltage LOW
delay ( 1000 ) ; // wait for a second
}
Wednesday, 28 September 2016
Project doubts
1) how to start programming for hardware
2) where to start programming
3) how to interface various hardware with controller
4) how to resolve programming bugs
What is microprocessor and microcontroller?
Simple way to explain is.
1) Human body =microcontroller
Human brain = microprocessor
2)Microcontroller=microprocessor + memory+ I/O
3) micro is related with the size as the transistors (MOSFETS) have size in 0.000001 cm.
4) microprocessor is use where CPU need to deals with large data (ex.computer)
5)microcontroller is use where IO work is more and deals with smaller data ( single purpose electronic device, automations)
My helpdesk
If you have any doubt regarding the following aspects then click the following link and post .... I Will post the relevant solution...
All the best !
3)raspberry pi and machine learning
Introduction
Hello world!
My name is Manishkumar bante.
Electronics and telecommunications engineer.
This is my official blogging site for projects and theory of embedded systems and microprocessor.
Hope you like and find your solution.