Subscribe

Subscribe To Mail

Powered By

I Love:
Blogger

Powered by Blogger

L298 Based Motor Driver

The L298 is a popular motor driver IC that is usable from 6 to 50V, at up to 4A total output current. By itself, the IC is somewhat difficult to wire and use, but the Compact L298 Motor Driver makes it much more convenient to use. 


L298 Features
  • OPERATING SUPPLY VOLTAGE UP TO 46 V
  • TOTAL DC CURRENT UP TO 4 A
  • LOW SATURATION VOLTAGE
  • OVERTEMPERATURE PROTECTION LOGICAL "0" INPUT VOLTAGE UP TO 1.5 V(HIGH NOISE IMMUNITY)
Board Special Features
  • Four motor direction indicator LEDs
  • An onboard user-accessable 5V low-dropout regulator
  • Schottky EMF-protection diodes
  • Socket pin connectors for easy logic interfacing
  • Enable pins are user accessible.
  • Can be operated in parallel to provide a total current capacity of 4 AMPS

ICSP Programmer Features cheap free shipping




ICSP Programmer Features

* Programs most of 12F,16F and 18F devices .

* Can program 8 ,12,14,16,28,40 pin devices .

* Eliminates the tiresome process of removing the PIC from the board and plugging it into the programmer .

* Makes the development faster .

* No external power supply is needed .

* CD containing the manuals and software required to burn is provided.

* Fast and precise and at the same time can handle rugged use.

* ICSP connecting cable provided.

ICSP Configuration

* VPP (or MCLRn) Programming voltage (usually 13V).

* Vcc Power (usually 5V).

* GND Ground (zero volts).

* PGD - Data usual port and connection RB7.

* PGC - Clock usual port and connection RB6.

* PGM - LVP enable usual port and connection RB3/RB4.


ICSP Connection Diagram

Multi PIC Programmer

 
Programmer Features 
  • Programs most of 12F,16F and 18F devices .
  • Can program 8 ,12,14,16,28,40 pin devices .
  • ZIF socket provided for easy insertion and removal .
  • No external power supply is needed .
  • Serial port cable provided.
  • CD containing the manuals and software required to burn is provided.
  • Fast and precise and at the same time can handle rugged use.
  • Easy to use for beginners.
Package Contents
  • Programmer
  • CD Containing the softwares
  • Serial Port cable


PIC develpoment board



Board Features 
  • Includes Microchip PIC 16F877A Microcontroller.
  • ICSP (In Circuit Serial Programming) through RS232.
  • 40 pin IC base for compatible PDIP microcontroller packages.
  • On board regulated power supply.
  • Wide operating voltages 7V-15V.
  • Power indicator LED.
  • 8 bit port for sensor connections.
  • RS232 port connection header available.
  • Extension headers for PIC unused ports
  • Heaps of different devices and IC's can be easily connected
  • Dramatically reduces program development time
  • LED Display for all Input and Output ports.
Package Contents

  • PIC Development Board 
  • CD Containing the softwares and programming tutorials.(Free)


Robotics Kit 2 in 1 Offer


Featuring the new DIY 2 in 1 Robotics KIT.

The following 2 robots can be easily built with this kit.

* Obstacle Avoidance Robot
* Line Following Robot

The kit includes the following items.

Mechanical

* 4 Wheel Drive General purpose robotics chassis
* 2 DC Motors compatible with the chassis.

Tools

* 25W Soldering Iron
* Soldering Lead
* Wire Stripper and Snapper
* Screw driver
* Screws, nuts and bolts for mounting PCB.
* Insulation Tape and other tools requiredElectronics

Microcontroller

* The popular PIC16F84A Microcontroller
* General Purpose ICSP Programmer capable of programming a wide variety of Microchip PIC's
* ICSP Connector Cable
* RS232 male-female connector cable
* PIC16F84A Robotics Development Board

Power Source

* 2x 9v HW Batteries
* Battery Snaps

Electronic Components

1. 7805
2. PIc16F84a
3. Lm324 Comparator
4. L293D Dual H-Bridge Motor Driver
5. IC Base
6. 100uf capacitor
7. 0.1uf Capacitor
8. 15pf Capacitor
9. 10k Resistor
10. 1k Resistor
11. 1n4001 Diode
12. Connectors
13. Reset Switch
14. Toggle switch
15. IR Led's
16. IR Detectors

Software

* Mikroc - C Compiler For PIC Microcontrollers
* WIN-PIC - Burning Software for PIC Microcontrollers
* PIC Simulator IDE
* IC Prog

 FREE
Study Materials:

* CD Containing tonnes of Ebooks related to Robotics and Programming.
* Manual containing circuits and assembly instruction.

Paralel Development Board

Features
  • On board DB25 Female connector
  • Screw terminal for each data line
  • Screw terminals accomodate wire sizes from 16AWG to 26AWG
  • LED indicator for each pin 

Package Contents

* Parallel Port Development Board

* CD Containing all the required software and tutorials(FREE)


Some Details about Parallel Development Board





How to work with Java

Hi Friends,
Yesterday I was struggling with programming in Java and searched a lot of sites to know about it. Each and every site confused me and so now that I have written for you in easy steps so that you can work with java easily.

Step 1: write the Java code using Notepad.

The java program for eg: hello.java should be typed in notepad first . Now save it in the format(.java) in the location>> C:\Program Files\Java\jdk1.6.0_07\bin.
Remember: You need to save it under jdk\bin . The location of the same can be found where you have installed java. I have installed java in c drive under program files.

step 2: working with command prompt

Now that you have written the java code and you need to run to get the output.
So, go to start >> Run >> type cmd.
Now command prompt opens up.
type cd..
type cd..
Now you have changed the directory to c drive
c:\>
Now you must go to the location C:\Program Files\Java\jdk1.6.0_07\bin.
So, from c:\> what commands should I type to move to bin directory?

Step 3: Moving to Bin Directory

c:\>
cd [space] program files

Now it has moved to
c:\program files\>
Similarly you must type
c:\program files\> cd[space] java
and so on till bin reaches.
c:\program files\Java\jdk1.6.0_07\bin>


Step 4 Debugging the program.

So, once the bin is reached type
c:\program files\Java\jdk1.6.0_07\bin> javac [space] hello.java
This will check whether if there are some errors in it. If there are no errors then it will come back to the same bin location
c:\program files\Java\jdk1.6.0_07\bin>

step5: Running the Program

Now type the following command to run the program
c:\program files\Java\jdk1.6.0_07\bin> java[space] classname
whats classname?
In the java program type the classname which contains the code for output.

Now you can get the output!! cool !!

..