Advertisement

Automatic College Bell System Using Labview,Arduino and Soundcard

By using Labview's graphical interface we can easily make a better interface for defining time,and Arduino as a external hardward will be better choice. You know how to interface arduino and labview , if don't better to read my previous posts. ................

TITAN Future Robot

Titan the Robot is an entertainment concept unlike anything on earth and is utilised by event management companies worldwide to add something very special any festival, corporate party or as the ultimate in shopping mall entertainment.

Automatic College Bell System Using Labview,Arduino and Soundcard

By using Labview's graphical interface we can easily make a better interface for defining time,and Arduino as a external hardward will be better choice. You know how to interface arduino and labview , if don't better to read my previous posts. ................

Control car with arduino and labview

This post is about to control a toy car with labview and arduino .

220+ University Projects With full report,circuits and pictures

Having Difficulty in choosing project don't worry, Now you can find all projects from 1999-2007 . Just go for best one

Thursday 29 November 2012

The Best Android Apps for the Electronics & Electrical Engineers

The world around us is changing at a much faster pace than any one can anticipate. The world of “computing” has already seen great shifts from Desktops to Notebooks to Smartphones and Tablets. The coming decade will be more focused on mobile computing and cloud computing. Here there are some of the best and really useful applications released in Android market (aka Google Play), that comes handy for any one who is working in Electrical and Electronics industries/professions. 


ElectroDroid – is the most popular and useful application in Android market for an electronics engineer.

Saturday 10 November 2012

Automatic College Bell System Using Labview,Arduino and Soundcard

May be you have ever searched projects of automatic bell system and you found a lot of projects on internet but all these projects are much complicated and time consuming .Most of bell system projects are microcontroller based,may be you don't the programming of microcontroller than it is more than complicated.Why not we find another way to make this project instead of
using lot of resistors transistors capacitors,microconrollers etc .We just use a single software LABVIEW you all know what is labview.

Simple Robotic Hand using Labview,Arduino and Servos

Today i am going to show you how to interface servo motors with arduino and labview.
I hope you know how to interface arduino and labview if you don't no problem just click link here is complete tutorial about interfacing arduino and labview

Requirements
1)Arduino microcontroller board.
2)Three position control servos. Make sure they are not full rotation or continuous motion servos.

3)5 volt power supply

First of all we need to know about servo motors we don't go for working principle of  servo but just limited to pin.


Tuesday 6 November 2012

Increase Win7 Startup Speed in One Step

Want to speed up your windows 7 ? Here is simple tutorial that explains how to speed up your windows 7 startup (boot).

Friday 2 November 2012

Computer Lab Automation using Labview

Labview is one of  best softwares that are used for automation.LabVIEW is commonly used for data acquisition, instrument control, and industrial automation on a variety of platforms including Microsoft Windows, various versions of UNIX, Linux, and Mac OS X.
LabVIEW ties the creation of user interfaces (called front panels) into the  development cycle. LabVIEW programs/subroutines are called virtual instruments (VIs). Each VI has three components: a block diagram, a front panel and a connector panel.

Bookmark a YouTube video and watch from where you have stopped

Would like to bookmark YouTube video at the position which you are watching now???? You can easily do that just by following my new trick given below. The best past of this trick is that you don’t need any software for this. And also this trick helps you a lot to avoid some time consuming work. That’s is ,if you are

Sunday 14 October 2012

Enjoy Facebook and Youtube with Tor Browser when blocked in school

Getting Started

First of all download Tor Browser from link.
After downloading the Tor Browser Bundle, double-click the downloaded EXE file and extract it to your hard drive. The Tor Browser Bundle requires no installation, so you can extract it to a USB stick and run it from there.




Multiplexing and Charlieplexing of LEDs in Arduino



Multiplexing

Multiplexing is a very common way of driving LEDs, particularly when they are assembled as either a dot matrix display or a number of seven-segment/numeric displays. Multiplexing relies on the fact that if a light source is switched on and off fast enough, the human eye perceives it as being continuously lit even though it is in fact only on for a brief period.


Figure 16-2 shows a two-digit seven-segment display connected to an Arduino. Note that the seven segments are connected directly to the Arduino output pins and the “common cathode” of the display (all the LED cathodes) are connected through a transistor to ground. These bases of the transistors are, in turn, connected to an output pin on the Arduino.


In order to display two different numbers on each display, we use a procedure much like the following:
repeat {
Set Outputs 3 to 9 as required for first digit;
Turn Output 1 On;
Delay;
Turn Output 1 Off;
Set Outputs 3 to 9 as required for second digit;
Turn Output 2 On;
Delay;
Turn Output 2 Off;
}
If we repeat this rapidly enough, our eye will perceive both displays as being continually lit showing the digits we want. The general idea can, of course, be expanded to more digits—four or six for a clock, for example, and this is precisely how most LED clocks work.
Multiplexing doesn’t come entirely free. Because the LEDs aren’t on all the time, they appear dimmer. In our example, the duty cycle (ratio of “on” time to “off” time) for each display is 50%. For a four-digit display, it would be 25%, and so on.
To get around this, we can increase the current being sent to each display, this being where the peak current rating of the display becomes important. For a typical seven-segment display, it’s likely to be acceptable to increase the current to 50mA per segment. Higher than that, start checking datasheets and doing some calculations to ensure you don’t overstress the devices. By driving the LEDs with a higher peak current, they output more LED for the time they are on so they appear brighter. They also have time to cool during the off time, hence avoiding damage.
There is a caveat with driving LEDs at their peak, rather than constant, current rating: it’s very important that your software doesn’t inadvertently leave them on too long, or the device can be damaged. This can be problematic during development/debugging if your code crashes with the LEDs in an on state. It is prudent to do initial coding with the LED or display run with resistors chosen to keep it at its constant current rating.
The next issue with multiplexing is that, of course, the ATMega must update the state of the LED or display at regular intervals. This reduces the amount of processor time available for other tasks. With careful design, the impact of this can be minimized, but should be taken into account. Consider using a periodic interrupt to do the display updates.

Charlieplexing

Charlieplexing is a technique that can be used to maximize the number of LEDs or switches that a microcontroller can address with a limited number of pins. It makes use of the fact that a modern microcontroller (ATMega/Arduino obviously included) can actually set its pins to one of three states: High, Low, or Input (“Hi-Z” as it is sometimes called). We’ll confine our remarks here to driving LEDs. The Practical Arduino web site has links for references on this topic, if you wish to read up on more exotic setups, as well as links to the original articles on the topic.
Figure 16-3 shows two LEDs connected between a pair of Arduino output pins through a dropping resistor. Note that the LEDs are connected with opposite polarity. Two pins to drive two LEDs is hardly remarkable, but bear with us a moment and we’ll illustrate the basic principle. 






To turn LED1 on, we would make Output1 High, and Output2 Low. For LED2 we’d do the opposite: Output1 Low and Output2 High. To turn the LEDs off, we can either set the pins to be inputs or the outputs to be the same state (both Low or both High)
Figure 16-4 shows a more interesting arrangement. Here we drive six LEDs from just three pins by making use of the Arduino’s ability to set a pin to be an input or an output in a high or low state.
Referring to the diagram, to turn LED1 on, we’d set DIO1 to be an output and to be high, DIO2 to be an output and low, and DIO3 to be an input. LED2 would be turned on by DIO1 being an output and set low, DIO2 being an output and set high, DIO3 still being an input. Jumping around, LED4 you’d set DIO1 to be an input, DIO2 to be low, and DIO3 to be high. LED6 would call for DIO1 to be low, DIO2 to be an input, and DIO3 to be high, and so on. A bit of thought and careful programming will allow you to create a general-case piece of code that can turn on any LED required.


You’d be correct to wonder why when LED6 is on, LED1 and LED3 aren’t. They’re connected between the same pins, after all, and with the correct polarity. The answer here is the forward voltage drop—there isn’t a high enough voltage across the two LEDs when connected in series to allow them to light because it’s below the threshold or Vf level.
If, as is often the case, you want to have more than one LED on at a time, you can use a multiplexing arrangement, switching to each LED in turn in rapid succession. Avoid the temptation to simply skip an LED that is off. If you do so, then the brightness of any LED that is on will change depending on how many LEDs are on at any one time. Of course, if the number of LEDs that are on is constant—as would be the case for hands on a clock, say—that would be acceptable. LEDs that are off can be skipped completely in such a case. As noted in the previously, you’ll need to consider running the LEDs at higher currents to keep the brightness up, and the same caveats about duty cycle come into play.
Finally, note that the current-limiting resistors are half the value you’d normally expect to use. This because the LED being driven is always being powered by the Arduino through two pins and, hence, two dropping resistors.
If you’re curious, the general case for the number of LEDs that you can drive from n pins is n2 – n. For example, eight DIOs yield 56 LEDs; 12 DIOs yield 132 LEDs; and so on. That’s a lotta LEDs!

Sunday 7 October 2012

More About Electricity Basic Terms

 What’s an Electron?

An electron is one of the three fundamental parts of a molecule, the
other two are the proton and the neutron. One or more protons and neutrons stick together in the center of the molecule in an area called the nucleus. Electrons are very small in comparison to protons and neutrons, and they orbit around the nucleus. Electrons repel each other, and electrons and protons attract to each other.

Wednesday 3 October 2012

Special-Purpose Servo Types and Sizes


Servo motor advantages and comparisons are already discussed now its time to discuss Special-Purpose Servo Types and Sizes.
While the standard-sized servo is the one most commonly used in both robotics and radio controlled models, other R/C servo types, styles, and sizes exist as well.

Quarter-scale (or large-scale) servos

 are about twice the size of standard servos and are significantly more powerful. Quarter-scale servos are designed to be used in large model airplanes, but they also make perfect power motors for a robot.

Tuesday 2 October 2012

Microphone and Types of Microphones

Microphones are conversion devices. Microphones are also known as transducers. as they convert mechanical waves to electrical waves. Once converted to electrical waves. these waves can be amplified.

Microphones are available in many different types and styles:

Monday 1 October 2012

100+ Computer Acronyms



ADSL - Asymmetric Digital Subscriber Line

AGP - Accelerated Graphics Port

ALI - Acer Labs, Incorporated

ALU - Arithmetic Logic Unit

AMD - Advanced Micro Devices

APC - American Power Conversion

ASCII - American Standard Code for Information Interchange

ASIC - Application Specific Integrated Circuit

ASPI - Advanced SCSI Programming Interface

AT - Advanced Technology

ATI - ATI Technologies Inc.

ATX - Advanced Technology Extended

Friday 28 September 2012

DreamScene Make Desktop Beautiful With background video

What exactly is Windows DreamScene?

Windows DreamScene is a Windows Ultimate Extra. Windows Ultimate Extras are designed for Windows Vista Ultimate customers to extend Windows features to make using your computer more fun. With Windows DreamScene, you can change your desktop background to a video clip, which runs in a continuous loop to make your desktop come to life.

Thursday 27 September 2012

How Can You Recover A Forgotten Password To A Word Document


Here is step by step tutorial that explains how can you recover a forgotten password to a word document by using FREE Word and Excel password recovery Wizard 2.0.9 Now (863 Kb) . If you don’t know how to protect your word document with password , I recommend you to read my previous article How To Protect Your Microsoft Word Documents
1) Download FREE Word and Excel password recovery Wizard 2.0.9 Now (863 Kb) and install it.


Tuesday 25 September 2012

How To Play Mobile Games On PC


Here is a interesting program , that lets you play mobile phone games on your pc.
 KEmulator Lite is emulator that lets you do exactly that, it’s a free simple app that helps a lot of people who are interested in mobile phone games. 

Monday 24 September 2012

How To Play Youtube Videos When It is Blocked in a Country Or School

There are many proxy sites that allow  youtube videos to stream or facebook on your PC but this is a bit slow and time wasting technique.
In this post i am going to show how to play youtube videos or browse facebook when streaming is blocked in a country or School
Please use this trick for positive purposes(Please download Quranic ayats,Naats) youtube contains lot of Islamic related material.

Saturday 8 September 2012

Electronics Project Ideas



  • Adaptive Active Phased Array Radar
  • HDMI (High definition media interface)
  • Temperature Controlled Fan
  • More Electronics Projects
  • (pdf) file about project ideas
  • Computer controlled Rc Cars
  • Mobile Control Electrical Appliances

Friday 7 September 2012

Hybrid Operational Amplifier

we have generally confined our discussions and design examples to the basic 741 and the MC741SC. These devices are certainly not the newest, fastest, or necessarily the best in all applications, but they are very common and the principles presented directly extend to other higher-performance devices. To provide the reader with a dramatic performance contrast, and to illustrate the performance characteristics that are available in op amps, we will briefly examine the operational characteristics of a hybrid op amp manufactured by the M.S. Kennedy Corporation (MSK). Numerous devices manufactured by MSK offer outstanding performance. We will describe the MSK 739 Wideband Amplifier as a representative device.

Monday 3 September 2012

Comparison Between TTL ,CMOS & BICMOS

TTL

74 - the "standard TTL" logic family had no letters between the "74" and the specific part number.
74L - Low power (compared to the original TTL logic family), very slow
H - High s
peed (still produced but generally superseded by the S-series, used in 1970s era computers)
S - Schottky (obsolete)
LS - Low Power Schottky

AS - Advanced Schottky
ALS - Advanced Low Power Schottky
F - Fast (faster than normal Schottky, similar to AS)