Sunteți pe pagina 1din 100

Self Healing

Computers
Manufacturing
Flexible Electronics
Wireless
Charging ` 100
AUGUST 2014

For You
The Latest

Security
Technologies & Solutions

Top 5
DO-IT YOURSELF
> Sequential Tilt-Motion Lock
> Oscilloscope as Image Viewer
> Mini Rechargeable Power Supply
> Building Image Processing
Vol. 3 No. 4 Embedded Systems Using Python
ISSN 0013-516X
> Understanding Digital Camera
Pages: 150+8 UK £5; US $10 Histograms Using MATLAB

Juicy fruit... get more


TM

Plus, many more make your own projects inside

TM TM

TM

Raspberry
Juicy
Juicy fruit...
Juicyfruit... formore
get
fruit...get
get your money
more
more Get yours today at element14:
Raspberry
Raspberry
Raspberry for
for your
foryour money
yourmoney
money
+
Get yours
with the
today
NEW Model B+in.element14.com/raspberrypi
at element14:
Get
Get
with the NEW Model B+
yours
Getyours today
yourstoday at
todayat element14:
atelement14:
element14:
the NEW
NEW Model
Model B+
in.element14.com/raspberrypi
in.element14.com/raspberrypi
in.element14.com/raspberrypi
with
withthe B+
in.element14.com/raspberrypi
® Raspberry
@element14.com Pi is a trademark
| of
1800 the Raspberry Pi Foundation
3000
in-sales@element14.com
in-sales@element14.com
3888 | (Toll
|| 1800
18003000
3000 3888 (Toll free)
®®Raspberry
RaspberryPiPiis isa atrademark
trademark
ofofthe
theRaspberry
RaspberryPiPiFoundation
Foundation in-sales@element14.com
in-sales@element14.com | 1800
® Raspberry Pi is a trademark of the Raspberry Pi Foundation 1800 3000
free)
3000 3888
3888 (Toll
3888(Toll free)
(Tollfree)
free)
EFY Plus DVD

Create Virtual CPUs


Using CPU Sim
CPU Sim is a software that lets you create CPU architectures of your choice,
create and edit assembly languages, and run them on the simulated CPU using
machine language

Anagha P. struction fetch, decode


and execution

U
nderstanding the concepts of 5. Instruction types
computer organisation and (data manipulation,
architecture is difficult by just memory architecture, reg-
reading about it. Hands-on experience isters, interrupt, control,
is required to fully grasp the subject. external I/O)
Unfortunately, providing this experi- 6. Instruction formats
ence can be difficult due to the lack of 7. Assembly language
availability and high cost in setting up programming and ma-
labs with necessary hardware. Moreo- chine language program-
ver, the time required by the users to ming
familiarise with the tools for working 8. Addressing modes
with hardware is also significant. In of CPU
order to solve this problem, some cen- 9. Main memory or-
tral processing unit (CPU) simulator ganisation and operations
programs were developed. But most Understanding and
of these software packages could simu- using CPU Sim does not
late only fixed architectures. require in-depth knowl-
edge of a high-level lan-
Why you should learn guage, but an apprecia-
to use CPU Sim Main window tion of concepts involved
The idea that you should have ex- in high-level language
posure to as many different archi- on STARTLE simulator developed programming is an advantage.
tectures as possible and hands-on by JM Kerridge of the University of
experience to design your very own Sheffield. What you can do with it
simple architectures is what led to CPU Sim is a complete development
the development of CPU Sim. It is an What the user gets environment. This software allows
interactive simulator that allows you By using CPU Sim, you can get hands- creating or modifying a simulated
to understand computer architectures on experience on the following subjects CPU including units such as registers,
and organisations, design your own of computer organisation and archi- microinstructions, machine instruc-
architectures from scratch, or mod- tecture: tions and RAM, and specifying its
ify the given architectures. You can 1. Representation of numeric data features.
write the programs using machine and their number bases You can create, edit and execute
language or Assembly language and 2. Non-numeric data representation Assembly language programs for this
run them on the virtual CPU. You can 3. Microprogrammed realisation virtually created CPU. It has built-
also specify details of the CPU to be of the CPU (where control signals are in features and dialogue boxes that
simulated, such as register set, micro- generated by a microcode/micropro- help you design CPU architecture,
instruction set, machine instruction gram stored in the control read-only text editor where you can write and
set, memory and Assembly language memory) edit the Assembly language program,
instructions. The software was based 4. Operation of control unit: in- assembler and separate displays for

www.efymag.com Electronics For You Plus | August 2014 I


EFY Plus DVD

CPU Sim Facts Installation


License type Freeware 1. Confirm that Java runtime environment (JRE) 1.5 is installed in the computer. If not,
download it (free) from http://java.sun.com/ (Java comes installed with OSX)
Author Dale Skrien, Department of
Computer Science, Colby
2. If necessary, fix your Path system variable so that it includes the directory installed
College with Java, in which the Java interpreter application is located. (Not required for OSX)
3. Unzip CPUSim3.9.0.zip file, which produces two folders, CPUSim3.9.0 and
Operating system Windows, Linux, OSX MACOSX
Latest version CPU Sim 3.9.0 4. Start CPU Sim
Disk space 7.9 MB
Windows: In the folder CPUSim3.9.0, double click on the batch file CPUSim.bat and
the program opens automatically. If a window Wombat1 does not open, check again if you
Other Java runtime environment have the suitable version of JRE installed in your computer.
requirement(s) (JRE) 1.5 or later OSX: To install the English language version of CPU Sim, double-click on
CPUSim3.9.0.app. For Chinese version, double-click on CPUSim3.9.0.Chinese.app file.
viewing RAM and registers during Linux (or for those who prefer using Command Prompt/Terminal Window):
execution. 1. Open the command prompt or terminal window and navigate to the folder
It has several features that make CPUSim3.9.0.
debugging easier. For instance, you 2. Type the following commands for their respective operating system, in a single line:
 For Windows:
can execute the assembled programs
java -cp CPUSim3.9.jar;jhall.jar;CPUSimHelp3.9.jar cpusim.Main
either continuously or step-by-step.  For OSX and Linux:
It allows inspecting or changing any java -cp CPUSim3.9.jar:jhall.jar:CPUSimHelp3.9.jar cpusim.Main
of the values in the register or RAM 3. The following four additional optional arguments can be added to the command
windows and resuming execution or line, in any order:
stepping forward or backward during -m <machine file name>
the execution. If an error is detected -t <text (assembly program) file name>
-l <language>
during assembling in the program
-c
to be run, it is highlighted in the text The -m flag is used to indicate the machine file to be loaded into CPU Sim during start
editor. up. If a text file is specified using -t flag, that file is opened during start up. The language
for display menus and dialogues can be indicated by the -l file (-l English or -l Chinese).
What makes it special If -l file is not specified, it opens in the default English language. The -c flag (which can
The architecture of CPU Sim is de- be used only together with -t and -m flags) indicates that the Java Swing GUI should not
be used, and the corresponding text file and machine file will be loaded and run from the
signed at register-transfer level. This
command line. The -p flag is used to specify property files (files that contain information
means the basic units of the hypotheti- like the preferred fonts, register, RAM windows, and recently opened machine and text
cal CPU are registers, condition bits files) and is used to load them into CPU Sim during start up.
and memory (RAM). The user does
not have to deal with logic gates or
transistors on the digital logic level of easy user interface and appealing
the machine. view are additional advantages.
CPU Sim is developed purely us-
ing Java Swing package. This makes Support
the program run on any computer CPU Sim has a very comprehen-
with Java runtime environment (JRE) sive help guide provided in the
installed in it, irrespective of the plat- menu bar (Help > General CPU
form (Windows, Linux or OSX) it runs Sim Help). The installation pack-
on. age also contains a PDF document
When you start CPU Sim, the win- Sample assembly language (CPUSim3.4UserManual.pdf) that
dow comes with a loaded hypothetical explains how various functions are
CPU known as Wombat1. Here you Obedient Moron) Computer Simulator performed using this software. It
can assemble and run a program for are some of the CPU simulator tools also includes tutorials with sample
that architecture. You can also create a we found online that have features assignments that can be run on CPU
new virtual CPU from scratch by going similar to CPU Sim. Though most of Sim. Questions and comments can be
to File > New Machine. these are available for free, they lack directly sent to the author Dale Skrien
many of the features available in CPU by e-mail. Visit CPU Sim home page
Why CPU Sim Sim. This software is simple enough www.cs.colby.edu/djskrien/CPUSim
XSIM Computer Simulator, DLX Simu- for self-learning and to work with, yet for details. 
lator, HiRISC Simulator, Simple Com- rich enough to thoroughly understand
puter Emulator and TOM (Thoroughly the concepts and build on them. An The author is a technical correspondent at EFY

II August 2014 | Electronics For You Plus www.efymag.com


EFY Plus DVD

Simulate Your PIC


Microcontroller Using gpsim
In this article, we explore the features and advantages of gpsim by analysing
the step-by-step procedure to simulate PIC microcontroller using this tool.
gpsim is available for Linux operating system on the DVD accompanying this
month’s issue of EFY Plus

Sneha Ambastha of PIC to share a relationship. By be- becomes obvious for engineers to ask:

g
ing designed to support all the three Why use gpsim? A simple answer
psim is a free software simula- families of PIC (12-bit core, 14-bit core to this is that, being a free and open
tion tool for PIC microcontrollers and 16-bit core), this tool eliminates source software, unlike most of its
from Microchip, which has been the need of a different simulator for a serious competition, gpsim enjoys the
designed to be fast enough to simulate different core. gpsim’s accuracy allows FOSS community support.
PICs at a speed of about 20MHz. Its it to test the PIC in the same way as it gpsim has the following benefits
accurate design makes it comparable to would be in a real world. that make it superior to all the other
using a real PIC microcontroller from simulators available in the market:
the core to the I/O pins and even all Why use this tool Easy debugging with three-control
the internal peripherals. Currently, there are so many software option. gpsim is capable of being con-
simulators available for PIC that it trolled from either a graphical user
Why it is noteworthy interface (GUI) by a remote process
It is mostly written in C++, which ena- or by a command line interface (CLI).
bles it to easily implement a hierarchi- Although the tool is by default config-
cal model of a PIC. This in turn enables ured for GUI, it can also be configured
it to use the inheritance property of for CLI and remote process later.
C++, which allows the various models No hardware requirements. gpsim
does not require any minimum hard-
Three important functions ware specification and so can be built
1. Complex debugging with in-circuit and run on any popular Linux distri-
emulators Fig. 1: Register reviewer bution. Moreover, it is not limited to
2. Provides a means to access virtual Linux and has also been
functions like execute and name ported to other operating
3. Sets read and write break points on systems like Microsoft
values Windows, BSD, MAC
and Solaris.
Competitors to gpsim Supports loadable
modules. This feature
 Real PIC Simulator
 PICsim enables gpsim to add all
 Oshon Simulator other devices that are
 PIC Development Studio totally separate from this
tool. It allows users to
customise a simulation
System requirements environment.
1. No minimum hardware requirement Allows easy inspec-
2. Two packages, readline and gtk (the tion. At times, a his-
gimp tool kit), are pre-installed in a tory or a trace of the work
Linux distribution like Ubuntu
helps inspect its current
3. Utility package, gputils
Fig. 2: Source browser status and to analyse the

www.efymag.com Electronics For You Plus | August 2014 III


EFY Plus DVD

How to compile and install cause of the bugs. gpsim helps diag-
nose the bugs providing that history.
Since we have seen that some users find the installation to be a challenge, here are the steps to
extract and convert this tool into an executable file: Additional benefits
As discussed before, gpsim can be easily installed in Linux/Unix environment. However, through supportive tools
gpsim is available in compressed format and should be converted to an executable format for
installation: gpsim has the following supportive
1. Create a parent subdirectory for gpsim (example, gnupic) tools that help it in simulation:
$ mkdir ~/gnupic Register reviewer. gpsim has two
(you can choose whatever directory name you like) similar register windows that provide
2. Copy the tar ball to this directory and expand it: data for RAM and EEPROM. It allows
$ cd ~/gnupic
you to see all registers in the current
$ mv the_path_of_where_ever_the_tarball_is/gpsim-0.x.y.tar.gz .
$ tar -xvzf gpsim-0.x.y.tar.gz processor, with their display names
(Where ‘x.y’ is the release number. As per the software in the DVD ‘x.y’ is ‘27.0’) and values. The register viewer pro-
These commands will create a subdirectory called gpsim-0.x.y. All of gpsim’s source code vides the following functions:
will be untarred here. 1. One can not only set read, write
3. cd gpsim-0.x.y and break point values but also clear
4. ./configure each break point on the registers
This will check your system for the proper tools necessary to build gpsim and then it will
2. Writes and reads of specific data
create Makefiles.
5. make all can be logged in
This will create the executable. 3. Cells can be copied just by drag-
6. su root ging the borders of the selected cells
Su or root privileges are required to complete the installation. If you don’t have root privileges 4. The content of one cell can be
or don’t wish to install gpsim in the /usr/local/bin directory, check the steps on building without copied to another cell
root privileges. 5. ‘Add watch’ allows one to watch
7. make install
the register values
This copies the executable file into the /usr/local/bin subdirectory.
The last and final step is to install gpsim: Source browser. gpsim has two
1. Use the following codes: source browsers: .asm and .obj. The
cd $HOME/compiling .asm is a colour-coded display of the
tar xzvf gpsim-VERSION-tar.gz PIC source whereas the .obj provides
cd gpsim-VERSION- an opcode view. The opcode view has
./configure --with-exdbm=$HOME/localinst/eXdbm --prefix=$HOME/localinst/gpsim memory cell on one line and informa-
make install
tion related to disassembly, address
cd $HOME
2. Edit your shell configuration and add something like: and hexadecimal value on the other.
export PATH=”$PATH”:$HOME/localinst/gpsim/bin Breadboard. It not only allows one
3. Re-login to let changes take effect. to create/modify and examine the
As these files were only needed for compiling and installation, they can be removed. To PIC environment but also helps to in-
remove these files you can use the commands: stantiate PIC processor from the com-
rm -rf $HOME/compiling/eXdbm mand line or from .stc file. In simple
rm -rf $HOME/compiling/gpsim
language, it helps in creating a correct
rm -rf $HOME/compiling/gtk+extra
Use the following link to build and install gpsim on Windows: http://gpsim.sourceforge.net/ configuration to test the source code.
gpsimWin32/gpsimWin32.html You can create code just by a click and
also connect to those nodes for a bet-

Your favourite Magazine on Open


THE COMPLETE MAGAZINE ON OPEN SOURCE
Source is now on the Web, too.

OpenSourceForU.com
Follow us on Twitter@LinuxForYou

IV August 2014 | Electronics For You Plus www.efymag.com


EFY Plus DVD
ter configuration just with the help of cal view of the I/O pin states in the of assembly code with virtual bread-
gpsim’s breadboard. same way as a logic analyser. It can be board, watch, scope, and supports
Scope window. gpsim also has a controlled either from the GUI or from stimulus files and graphical periph-
scope window that provides a graphi- the command line. eral module simulation. Wow! This is
worth money!”
What users 2. “Made my transition from High
have to say Level development to embedded de-
We realise that a journal- velopment world much easier. Works
ist’s conclusion might not great with 16F series. Waiting for the
be as accurate as that of kinks to unwind in the 18F series.
an actual user. Therefore Great job, developers and maintain-
we are reproducing be- ers!!”
low some reviews on this 3. “I found to manage the nice
tool from the sourceforge. free and open source PIC simulator
net and edaboard.com gpsim. It has GUI and animation also.
communities: Earlier I tried it, but it crashed after
Fig. 3: Breadboard 1. “Step debugging ‘Add library’ (libgpsim_modules.dll
on windows). I used the latest ver-
sion—0.25.1. But the good news is,
earlier version 0.24.0 works perfectly.
I was also having problem in using
Fig. 4: Source Window1 USART module correctly (on Linux).
This is also solved.” 

The author is a technical journalist at EFY. The


article is based on the gpsim document from
Fig. 5: Source Window2 Sourceforge.net

www.efymag.com Electronics For You Plus | August 2014 V


EFY Plus DVD

Magic: An Interactive
VLSI Layout Tool
Magic layout tool has the capability to incorporate expertise about design rules
and connectivity directly into a layout system in order to implement some powerful
interactive operations

Pankaj V. would get with more complex rules plex. Most importantly, it allows you
and structures. This density sacrifice is, to focus on your design while the soft-

M
agic is an easy-to-use VLSI however, compensated by the reduced ware takes care of mundane tasks like
layout tool that has been design time. Magic permits only Man- following layout rules.
popular with universities hattan designs, that is, where edges are Now let us have a look at some key
and small companies. It can be seen either vertical or horizontal. features that set it apart from the other
as an open source EDA alternative to Magic combines circuit knowledge layout editors available.
the various commercial EDA tools out with an interactive editor interface to
there. It provides many useful features speed up your manufacturing design Efficient corner-stitching
for streamlining your product design processes. It allows you to enter and technique
flow. modify your designs quickly. The Like most layout editors, Magic also
built-in knowledge of layout rules, uses cells. However, the contents
What’s noteworthy circuits and transistors, and the knowl- of these cells are represented using
about Magic edge of efficient routing, helps you corner-stitching technique, which
Magic uses simplified design rules and re-arrange your circuit as a circuit, provides efficient searching options
circuit structures that make design- and not just a collection of geometrical and allows for quick modification of
ing easier, but produces circuits that objects. This makes any modification the database.
are of lower density than what you process more efficient and less com- Each point in the x-y plane is con-
tained in exactly one tile and
empty space is represented ex-
plicitly. These tiles are linked
together at their corners. This
allows for fast and efficient
algorithms for searching, crea-
tion or deletion. Though it re-
quires more storage space, this
technique allows for efficient
two-dimensional searches and
permits fast updates.

Interactive interface
Magic is usable through an
interface that features colour
graphics and also allows the
use of a mouse to design basic
cells. These basic cells can be
hierarchically combined to
make larger structures. The
tool also provides multiple
overlapping windows that can
refer to different portions of
Magic screenshot a single cell or to completely

VI August 2014 | Electronics For You Plus www.efymag.com


EFY Plus DVD
different cells altogether. This way New features in the latest version
you can see an overall view of the chip
while zooming in one or more than one 1. Improved routing through an interactive maze router, which allows you to specify hits
to control the routing
piece of the chip, and you can precisely 2. Accurate path-length extractions are now possible, which is very useful while dealing
align large components. Additionally, with high-speed circuits
it enables you to easily copy informa- 3. An interface to IRSIM simulator
tion from one window to the other.
With the interactive feature of between cells or form (appear?) broken
Interactive router continuous design-rule check, you in cell-overlap situations.
A key feature and an aid to manual can easily and immediately figure out Magic, however, allows the cells
routing in this layout tool is its interac- the error location. While editing any to overlap as long as the transistor
tive router, Irouter, which provides an layout with Magic, the system will au- structure is not changed. This means,
interface to the internal maze router. tomatically check the design rules, as you can have extracted circuit to be
You can perform routing at one con- mentioned above. Whether you paint represented hierarchically. The ex-
nection at a time, specifying the start- or erase, or move a cell or change any tracted circuit will contain the circuit
ing and the end point prior to each array structure, Magic will recheck the of the cell, circuits of its sub cells and
connection. area changed by you in order to check connections between them.
What’s more, you can decide the for the violation of any of the layout Though Magic can deal with cell
order in which signals should be rout- rules. If rules are violated, little white overlapping, extensive use of cell over-
ed and how multi-point nets should dots will be displayed in the vicinity laps is not recommended. Extended
be decomposed into point-to-area con- of the violation. These white dots or overlapping will cause the tool to run
nections. But the interactive router is the error paint will stay till you fix the very slowly and hard to make any
not a fully automated router, so it will problem. modifications.
not consider the interactions between
nets and thus net decomposition is not Circuit extraction in Stretch and compact cells
automatic. hierarchical designs Plowing is a special feature that allows
The special Magic ‘hint’ layers will Magic uses cell hierarchies to repre- you to rearrange the layout without
allow you to control the nature of the sent a layout. Each cell contains three changing the electrical circuit which
routes. Typically, you can determine things: paint, label and sub cell. While it represents. The plow operation pre-
the overall path of a connection and some say that a hierarchical structure serves the design rules and connectiv-
leave the ‘design-rule check’ and ‘de- is not necessary by reasoning that lay- ity to maintain the electrical structure
touring’ around or over minor obsta- out can also be represented as flat, a of the circuit.
cles to the router tool itself. hierarchical structure greatly improves As the plow moves, every edge
efficiency of the design tools as well as in its path is pushed ahead of it (not
Design-rule check with the speed and ease of designing with the layers), preserving design rules,
error paints them. connectivity, transistors and contact
Magic incorporates a continuous There is a problem though. In sizes. This makes everything ahead of
design-rule check feature, which ena- case of cell overlaps, this situation be- the plow to get compacted down to a
bles you to have an up-to-date picture comes complicated. As each cell uses a minimum spacing as per the design
of design rule errors (if any) in your separate plane, so information must be rules, and the material which crosses
layout. Therefore it is not necessary combined from these separate planes its original position gets stretched
to have a complete check over the in case of any overlap. Therefore behind the plow. To get a better idea,
whole design unless design rules are circuits cannot be extracted hierarchi- you can try it out using the installer in
changed. cally as it can cause transistors to split the DVD accompanying this magazine.

Read more stories on


TOPSECURITY STORIES
• CCTV camera market
is expected to double by
devi ces
2015
ELECTRONICS

• The latest in biom etric


to a bright future
security and surveillance in • CCTV Camera manufac
o Ana lytic s Syst ems
turers can look forward
Turning a CCTV into a proa
ctive tool
INDUSTRY IS AT A
• Vide gies

www.electronicsb2b.com
ving with new technolo
• Security cameras evol
eras
• The latest in dome cam nt security cameras
-proof and vandal-resista
• The latest in weather

Log on to www.electronicsb2b.com and be in touch with the Electronics B2B Fraternity 24x7

www.efymag.com Electronics For You Plus | August 2014 VII


EFY Plus DVD
You can stretch or compact most ftp://ftp.mosis.edu/pub/son- bles students to experiment and have
of the materials including polysilicon, deen/magic/new/beta/current.tar.gz better intuition on designing chips and
diffusion and metal. However, compo- fix bugs easily.
nents like transistors and contacts can Why Magic
only be moved, their shapes cannot be Magic is different from the other lay- Support
changed. out editors available. It is not just a Magic is an open source tool avail-
colour-painting tool, it understands able at http://opencircuitdesign.com/
Technology file geometrical design rules, transistors, magic/
Magic is a technology-independent connectivity and routing. It is a very You can download the latest ver-
layout editor where all the technology- handy tool for easy bug fixing and ex- sion of the tool and find the related
specific information is contained in perimentation with alternative designs tutorials on this website. If you are
a technology file. This file includes to enhance the performance of a circuit. trying to learn about the system, you
information about layer types used, One of its major features, which can start with the various tutorials
electrical connectivity between types, the other similar tools lack, is routing. available on the website. Also, there is
design rules, rules for mask genera- Routing is the most tedious and error- a set of manuals for the system main-
tion and rules for extracting netlists for prone task, but Magic has made it tainers that can help in creating new
circuit simulation. easy with its interactive routing tools. technologies.
Since there is different technology Another problem with the other tools While running Magic, you can get
file for every fabrication process, you is their inflexibility and difficulty to help from the tool itself. Its help com-
can either build your own or re-write experiment with them. mand will provide you the command’s
the existing one for a new fabrication But Magic’s built-in knowledge of syntax with a brief description of the
process. You can download the stand- design rules and interactive feature of command. For other queries and sup-
ard technology file using FTP server at continuous design-rule check with an port, you can write to Magic authors at
MOSIS foundation. You can select the in-built hierarchical circuit extractor magic-dev@csl.cornell.edu 
symbolic link ‘Current’ for the latest makes this tool highly flexible and easy
version at the following URL: to use. Also, its plowing feature ena- The author is a technical journalist at EFY

VIII August 2014 | Electronics For You Plus www.efymag.com


contents
48
electronics for you Plus | August 2014 | Vol. 3 No. 4

78
Technology Focus Buyers’ Guide
En Route to Security 3.0 RF Modules to Suit
Your Application

12 eStyle Buyers’ Guide


Editor : Ramesh Chopra

Tablets: When Size Matters Hands-On Editorial : Editorial Secretary


correspondence Phone: 011-26810601; E-mail: editsec@efy.in

22 Futuristic Electronics
(Technical queries: efylab@efy.in)

Subscriptions & : Phone: 011-26810601 or 02 or 03


Almost Here: Self-Learning, missing issues E-mail: support@efy.in
Self-Healing Computers
Back issues, : Kits‘n’Spares, New Delhi

28 Manufacture
Part 2 of 2: Flexible Electronics: dIy: Project 90-95
books, CDs, Phone: 011-26371661, 26371662
PCBs etc. E-mail: info@kitsnspares.com

What’s the Use • Sequential Tilt-Motion Lock Exclusive : IBH Books & Magazine Distributors Ltd, Mumbai
• Mini Rechargeable Power Supply Newsstand Phone: 022-40497401, 40497402, 40497474,

36 Innovation
Daylight Harvesting With
dIy: Circuit
• Wireless Door-Opening Alarm
96-100
Distributor 40497413; Fax: 40497434
E-mail: circulations@ibhworld.com

Advertisements : Ph: 011-26810601 or 02 or 03


Automatic Lighting • Battery-Discharge Measurement Circuit new delhi E-mail: efyenq@efy.in

40
• Perfume Vaporiser Adaptor
Technology Focus • Speed Controller for Small Cooling Fans
(Head Office)

Modular, Connected and Intelligent Define Mumbai : Ph: 022-24950047, 24928520


Today’s Security Products diy: Tips & Technique 102-105 E-mail: efymum@efy.in
• Oscilloscope as an Image Viewer

54
Bengaluru : Ph: 080-25260394, 25260023
Technology Focus • Use of I²C for Extension of GPIOs E-mail: efyblr@efy.in

RF Surveillance: A Case of Homeland dIy: Software 106-111 chennai : Ph: 09916390422


and Border Security • Understanding Digital Camera Histograms E-mail: efyenq@efy.in
Using MATLAB
58 Technology Focus
Security Testing Tools: Wapiti, OWASP
• Building Image Processing Embedded
Systems Using Python
hyderabad :

Ph: 09916390422
E-mail: efyenq@efy.in

Kolkata : Ph: 08800094202


ZAP and Netsparker—A Comparison E-mail: efyenq@efy.in

64 Embedded Design
Wireless Charging is the Future
113 Industry Focus
Aerospace and Defence Industries:
Pune :
Ph: 09223232006
E-mail: efypune@efy.in
Offering Further Opportunities
70
Gujarat : Ph: 09821267855
Antennae Design
126 Interview
E-mail: efyahd@efy.in

Differential Solvers in china :


Power Pioneer Group Inc.
Computational Electromagnetics “There is also a major shift in the software Ph: (86 755) 83729797, (86) 13923802595
controls happening in T&M”— Sudhir Tangri, country E-mail: powerpioneer@efy.in

76 EFY Plus DVD general manager, Keysight Technologies India Pvt Ltd
JAPAN :
Tandem Inc., Ph: 81-3-3541-4166

128 Interview
E-mail: tandem@efy.in
This Month’s DVD Contents

82 Career
Plenty of Jobs Unfold for
“Limitations are paving the way for ultrasound-
based sensors”— Anup Tapadia, founder, TouchMagix
singapore : Publicitas Singapore Pte Ltd
Ph: +65-6836 2272
E-mail: publicitas@efy.in

130 Interview
PCB Designing taiwan : J.K. Media, Ph: 886-2-87726780 ext. 10

86 Test & Measurement


What’s New in In-Circuit Testing
“Embedded forms of USB will be very
important for connecting modem chips to
E-mail: jkmedia@efy.in

United States : E & Tech Media


Ph: +1 860 536 6677
baseband processors”— Terry Moore, CEO, MCCI
Regulars E-mail: veroniquelamarque@gmail.com
Printed, published and owned by Ramesh Chopra. Printed at Nutech Photolithographers,
8 First Look 121 New Products 142 Electronics Mart Ads EFY Plus DVD B-38, Okhla Industrial Area, Phase-1, New Delhi, on the first day of each month and
published from D-87/1, Okhla Industrial Area, Phase-1, New Delhi 110020. Copyright
16 Technology News 123 Letters 146 Product Create Virtual CPUs Using CPU Sim I 2014. All rights reserved throughout the world. Reproduction of any material from this
112 Useful Websites 124 Qs&As Categories Index Simulate Your PIC Microcontroller Using gpsim III magazine in any manner without the written permission of the publisher is prohibited.
Although every effort is made to ensure accuracy, no responsibility whatsoever is taken
118 Industry News 131 Business Pages Ads 147 Advertisers’ Index Magic: An Interactive VLSI Layout Tool VI for any loss due to publishing errors. Articles that cannot be used are returned to the
authors if accompanied by a self-addressed and sufficiently stamped envelope. But
no responsibility is taken for any loss or delay in returning the material. EFY will not
next issue • Smart Robos • Solar Electronics • EDA Tools for Circuit Design be responsible for any wrong claims made by an advertiser. Disputes, if any, will be
settled in a New Delhi court only.

6 August 2014 | Electronics For You plus www.efymag.com


First Look! The Latest Home And Office Products

Headphones MTS Introduces MBlaze Power Wi-Fi


from Sennheiser For high-speed data connectivity with up to six devices
For style and flexibility of
movement with audio excellence
S istema Shyam TeleServices has
launched MTS MBlaze Power
ing smartphones, tablets, laptops,
smart TVs, gaming consoles on MTS’

S ennheiser has launched three head-


phones for those who like to hear
music on the go—PX 95 mini-head-
Wi-Fi which ensures that today’s
smartphone and tablet users never
run out of battery and
3GPlus telecom network.
MTS MBlaze Power Wi-Fi comes
with media-sharing ca-
phones, rotatable neckband earphone have constant access pabilities, allowing us-
PMX 95 and the in-ear PCX 95. These to high-speed Internet. ers connected through
are optimised for MP3, iPod, iPhone and It packs a 5200mAH Wi-Fi to share docu-
portable media players, and come with a battery bank which ments, songs, videos
2-year warranty. can fully charge a and pictures, etc. Users
The sleek PX 95 mini-headphones smartphone up to can store up to 32GB
provide a detailed stereo sound repro- three times. It can data on the power bank
duction, while still being light enough provide high-speed through a memory card.
to wear comfortably for hours on end. data connectivity to up
The slender steel headband is not only to six devices includ- Price: ` 2999
durable but also highly flexible for a
proper fit. The headphone’s ear-pad
foam and quality fabric mesh enhances
acoustics and the adjustable ear cups
ensure a personalised fit.
Intex Launches Multi-media Speakers
The PMX 95 is a contemporary, ur- For loud and impactful music with special lighting effects
bane model with an ergonomic neck-
band for superior comfort and a secure
fit. The single-sided anti-friction cable
allows the wearer maximum freedom
I ntex Technologies has introduced a
new range of colour-changing mul-
ti-media speakers. The SUF GLO se-
tion with six multi-colour LEDs which
glow as per power output generated
by the speakers. All three speakers are
of movement while enjoying stereo ries speakers are well suited for users compatible with DVD/PC/LCD TV
sound on the go. The soft, rotatable ear who are fond of loud and impactful and come in six equaliser options of
cups are easily adjustable. music coupled with special lighting Normal, Classic, POP, Jazz, Rock and
The PCX 95 is Sennheiser’s first effects to create a disco-like appeal at Country to suit your mood.
model of headphones with an in-ear home. The newly introduced range For model IT-5000, the output
neckband design. They deliver detailed, includes three models—IT-5000, Power is 20W + 3W x 5, impedance is
bass-driven sound with amazing depth IT-2525 and IT-2575—designed to 4Ω, speaker size/Watt for main unit is
and extension in an unobtrusive, easy- generate high-volume sound with 10.2cm (4”)/20W and for satellite 7.7
to-wear package. The single-sided sophisticated light show. cm (3”)/3W x 5, frequency response
anti-friction cable allows the wearer The SUF GLO multimedia speak- for main unit is 40Hz~200Hz and for
maximum mobility, and the included set ers are optimised for superior ex- satellite 200Hz~20KHz.
of ear adaptors guarantees a perfect fit. perience in indoor or small outdoor Price: ` 2730 (IT-2525)
surroundings to elevate the music ` 4300 (IT-5000)
experience of party hoppers. In ad-
Price:
PCX 95: ` 5490
dition to producing high-frequency
PMX 95: ` 4990 beats, the series comes in combina-
PX 95: ` 3990

8 August 2014 | Electronics For You www.efymag.com


First Look! The Latest Home And Office Products

GizMo Videocon Introduces VPhone


A low-cost feature-rich phone with a large screen
ByTes
V ideocon Mobiles brings in this
sleek looking device that boasts
of international finish and style. It
venience of big on-screen fonts that
enable elderly people to dial numbers
and access on-screen menu easily.
New Design Tool App For
Smartphones features a rubberised back finish The VPhone Grande has inbuilt
that is designed for supe- six-regional-language
Coilcraft has announced its new RF and
Power Inductor Product Finder app rior grip and cool looks. The support that in-
for Apple and Android smartphones. Phone also comes with a cludes Hindi, Pun-
This free application enables users to first-in-class two inter- jabi and Tamil. It
quickly select the best inductor for their changeable back panels has 1.3MP camera,
design and order free evaluation sam- that allow the consumer 1100mAH battery
ples, all from their mobile phone. The to show off different and features like
Power Inductor tool provides instant styles as per occasion. a movie juke box
comparisons of core and winding losses, The VPhone Grande application, secu-
as well as DCR at temperature analysis.
features a large 7.1cm rity inbox, smart
It also allows users to quickly compare
(2.8”) QVCA display for auto call record-
L, Q, Ω and ESR, analyse inductance at
an immersive multimedia ing and smart
frequency, and search for products with
the highest Q or impedance. experience along with a call divert.
movie-hall like video
PNR Status Checker For playback. The large Price: ` 1950
Indian Railways Travellers screen also offers the con-
UCWeb has introduced a new inte-
grated PNR and train status checker

Arise Launches Android LED TVs


feature, Train Enquiry, for its UC
Browser smartphone app for the
Android, iOS and Windows platforms.
This free service will provide Indian With connectivity to the Internet, Wi-Fi and much more
Railways travellers information about
train status, schedules and routes. The
service can be accessed via various
links on UC Browser’s homepage navi-
A rise India has launched its new
range of LED TVs that are pow-
ered by Android 4.2 aka Jelly Bean
surf on the Internet, web browsing,
access to Wi-Fi, home share, com-
ponent video input and MHL link.
gation or simply by visiting train.ucweb. operating system. The TVs allow the It can pair Android phone directly
com. Train Search shows the fastest consumers to surf the Internet and to the TV through HDMI port. The
route to get to a destination, allow- enjoy the Android applications on device can also support image for-
ing users to search for trains between
their TV sets. mats such as MPEG4, MP3 and JPEG,
stations, seat availability, as well as the
Known as the Arise LED TV for USB, expandable memory via Micro
corresponding fare.
Android, it provides synchronising op- SD card.
Now Book Auto, Taxi Using tion. One can view Price: ` 35,000
AUTOnCAB App TV programmes
Here's an app that addresses one of or channels also
the most important issues of Delhiites. in smartphones or
A Delhi-based company called NGA tablets by installing
Technologies has developed a mobile
a specific applica-
app that lets people book cabs and
tion.
autos using the Internet or through a
Additionally,
phone call. The app called AUTOnCAB
connects passengers and auto/cab driv- the TV provides
ers. The company wants to make the QWERTY key-
complex and waiting process of com- board with 15cm
muting by auto or cab hassle-free with (6”) joy stick to
use of smartphones. play games. It also
allows users to

10 August 2014 | Electronics For You www.efymag.com


Buyers’ Guide

Tablets: When Size Matters


It is safe to say that, compared to smartphones, tablet sales in India have not picked up well.
While the market is brimming with tablet devices of all sizes, price range and features, not
many people are going for them. The reason for that can be debated, which we shall leave
for another day. Right now, let’s focus on what we need to look at when buying tablets

prasid banerjee not find it convenient to


replace it with a tablet.

I
ndeed, one of the reasons for the
lack of demand for tablets is their Wi-Fi or
usability. While a phone is carried without Wi-Fi
by everyone from a teenager to senior Tablets come with Wi-
citizens, many are quite confused Fi and without Wi-Fi.
whether they should buy a tablet or While the Wi-Fi variant
not. will connect to the Inter-
When it comes to tablets, there net only through Wi-Fi,
are different sizes available. While still useful in many situations. the other will connect using mobile
17.8cm (7-inch) devices are often Now, what do you use your networks. So, their usage is pretty self-
too small, it is the 25.4cm (10-inch) laptop for? The most common us- explanatory.
ones that really make the most sense. age today is to watch movies, audio You buy a Wi-Fi tablet if you have
Why? Because anything beyond chat or video chat with friends and regular access to wireless connections.
15.2cm (6-inch) is a phablet, which family, and cook up documents on 3G tablets, on the other hand, are use-
can pretty much cover the work of Microsoft Word. If this is the extent ful for those who need to use their
a 17.8cm tablet as well. On the other of your usage, then a tablet does device on the move, such as outdoor
hand, anything above 30.5cm (12- make sense for you. These devices sales people and professionals.
inch) is not quite as portable as you are cheaper than laptops and can do If you want a tablet for basic re-
would want it to be. all of these things. quirements, you can most often do with
But, if your usage extends to a Wi-Fi-enabled device. All you have to
To be or not to be audio editing, graphics, gaming or do is download your e-books, movies
With the option to dock a tablet and other advanced activities, you cannot etc in advance so as to use them while
2-in-1 devices available, many believe do without a powerful laptop. Also, in transit.
that a laptop is truly a thing for the last if you are working with a laptop on If you are unsure whether either
generation to dwell on. But a laptop is you desk most of the day, you may of these variants would fulfil your

Tablets to choose from


iBall Slide Lenovo Yoga 10 Samsung Galaxy Apple iPad Air HP Omni 10 Asus Transformer
3GQ1035 Note 10.1 Book T100

Price ` 17,999 ` 22,999 ` 49,990 ` 44,900 ` 27,900 ` 34,000

Connectivity 2G, 3G, Wi-Fi Wi-Fi Wi-Fi/3G Wi-Fi/3G Wi-Fi Wi-Fi, 3G

Display 25.7cm (10.1-inch) 25.4cm (10-inch) 25.7cm (10.1-inch) 24.6cm (9.7-inch) 25.4cm (10-inch) 25.7cm (10.1-inch)

Processor 1.2GHz Cortex A7 1.2GHz quad-core 2.3GHz Qualcomm Apple A7 64-bit 1.4GHz Intel Atom 1.86GHz Intel Atom Bay
quad-core Snapdragon 800 quad-core Z3770 quad-core Trail Z3740 quad-core

Operating system Android 4.2 Jelly Bean Android 4.2 Jelly Bean Android 4.3 Jelly Bean Apple iOS 7 Windows 8 Windows 8.1

12 August 2014 | Electronics For You www.efymag.com


Buyers’ Guide
TM
needs then you can go for a tablet that tablets. These tablets can be docked O
has both the features. The iBall Slide without a cover or keyboard, allowing Peripherals for Industrial Automation
3GQ1035, for example, can connect us- you comfortable setups for Skyping
ing 2G, 3G and Wi-Fi networks. with family, watching movies, etc. The Analog
build of Lenovo Yoga 10 has been liked NEW Timers
Price by most users.
Like smartphones and other tablets, Also important is the weight of the ON Delay, Interval, Star Delta, Cyclic ON
Operating Modes First OFF First, Forward-Pause-Reverse,
25.4cm devices are also available device. Lesser the weight, easier it is True power OFF
30 Sec, 60 Sec, 3/10/30/60 Sec/Min,
across a wide price range. This display to carry the device through crowded Time Ranges 1/3/10/30 Sec/Min/Hr, 1/2/4/8 Sec/Min/Hr,

size though won’t be available in the public transport and on long journeys. 1/10 Sec/Min/Hr
# SPDT (1 C/O)
Output Contact
below ` 15,000 range, also known # DPDT (2 C/O)

as the budget range. The iBall Slide Operating system Contact Rating 5A @ 230VAC/ 24VDC

110VAC, 230VAC, 415VAC, 24VAC/DC,


Supply Voltage
mentioned above is priced at around The operating system is a factor that 20-240VAC, 12-240VDC

` 18,000. everyone looks at while buying a tablet


25.4cm devices are available for or laptop. Here’s how we suggest you NEW
` 16,000 onward, going well beyond choose yours. The premise from the
` 50,000. The Apple iPad Air and Sam- beginning has been that you are going Hooters
sung Galaxy Note 10.1 are high-end to use your tablet as a replacement for with Flasher
72*72mm
devices priced around ` 50,000. But your laptop. Let’s face it, nothing quite Size 96*96mm
these are immensely powerful de- matches the functionality and wide us- T one
144*144mm
2 Tone, 4 Tone,110dB Output.
vices, which would often be more than age that Microsoft’s Windows presents Flasher W ith Flasher / W ithout Flasher
Accept Push Button On Front and/or Terminals
what you need. On the other hand, for when it comes to PCs. Unfortunately, Function on Back

hardcore gadget fans, the unparallaled there are not many Windows options Volume Control Yes, 10 to 100%
230VAC,24VDC,
performance that these bring would be available for tablets. The Asus Trans- Supply Voltage
20-240VAC,12-240VDC

a treasure. former Book T100 is a good Windows


tablet though, which easily passes as a Also Available
Calling or non-calling netbook when docked.
SMPS (Din Rail Mount)
Relay Interface Modules
Many people may like to replace their Others like the Samsung Galaxy SSR Interface Modules
FRC/ D-SUB connector
smartphone with a tablet. In our hum- Note 10.1 that we have mentioned here Opto Interface Modules
Diode/ Resistor Modules
ble opinion, your smartphone should run on Apple’s iOS or Google Android Power Distribution Modules
be a companion of your tablet (espe- operating system. You will find that Redundancy Modules
Analog Signal Converters
cially if you are buying iPad). How- both these OSs are good replacements Dedicated Controller
Products For Special
ever, tablets can be used for phone for Windows. The fact that Microsoft Applications
calls and can replace smartphones if leads in the OS segment has more to
you want. Just a suggestion, go for a do with users being comfortable with
Bluetooth or other headset if you in- the OS on their PC and not wanting to
tend to use a 25.4cm tablet for calling try new ones. Android has apps like
purposes as well. QuickOffice which replaces MS Office.
O
TM

There are myriad offerings from In addition, it also has apps for Skype Website: www.shavison.com
companies like Xolo, iBall and many and virtually everything you need. Email: shavison@shavison.com
SHAVISON ELECTRONICS PVT. LTD.
others. The tablets are usually priced Unit No. G-5 , B Wing , Udyog Bhavan No. 2 , Plot K-3 ,
over ` 20,000. Conclusion Anand Nagar MIDC , Ambernath (E) 421 506 , MH , India.
TeleFax: +91-251-2620417/ 2620427 Cell: +91 98 203 62980
A 25.4cm tablet can be a perfect re-
Build placement for a netbook. In fact, if
Ahmedabad : Integrated -09825709665 Ahmednagar :Tech Edge
Controls - 09822012595 Ankleshwar / Bharuch: Maharshi -
09879061845 A.P. : SV Enterprises - 9848962223 Aurangabad:
At this point you may be wondering you look at Asus Transformer series, Chintamani Electricals - 09850045468 Baroda: M/S Seemaco
A/G - 09979081104 Omega - 09687513744 Banglore:
how two 25.4cm tablets differ in their you will find devices that replicate Multiple Technology Solutions - 8861876624 Chennai: Shree
build, form factor, etc. Well, in theory netbooks, a genre that the company Krishna Ent - 09840332195 Deepak Agencies - 09840440065
Cochin : Alliance Automation - 09020480777 Coimbatore :
they should not, but they can and they is often attributed to have pioneered. Suriya - 09843356059 Delhi : Powertech - 09212260995
Durg : Aditya - 09827111400 Goa : Kedar - 09850041672
do. The build of a device plays a huge Further, if you happen to buy an iPad Jalna : Tech Edge - 09822012595 Karnal : Powertech -
role in its portability. A slim device like Air, iPad with Retina Display or Gal- 09212260995 Kolhapur : Kedar - 09850041672 Madurai :
Jagan Industrial Traders - 09843062834 Mumbai : Lohar Chawl
Apple’s iPad Air would be much easier axy Note 10.1, you will get much more : A. Harilal -09321085554 Mahavir - 09821022778 Mulund:
Yogesh - 9322251679 Andheri: Kalpesh - 9322231500 Nasik:
to carry around than others. power than your netbook offered.  Nasa - 09422271456 Noida : Nelumbo - 09560311660
Another example of the build The author was working with EFY as a
Pune : Pendse Electrical - 09325093840 Shrirampur: Tech
Edge Controls - 09822012595 Silvasa : Vijan - 09824700675
quality is that seen in Lenovo Yoga 10 correspondent till recently Thane : VE Electricals - 09819646729 Vasai : Plaschem -
09371048482 Dealers enquiry solicited

www.efymag.com Electronics For You | August 2014 15


technology nEWS
Most happening, fact-filled current affairs from around the world

Huge fan of ‘selfies?’


You should try ‘dronies’
Drones are the helicopter-like flying
devices that the military has used for
years for surveillance and monitoring.
These drones are now coming to the
electronic consumers market, and have
been used in agriculture, photography
of houses by estate agents, gather-
ing news, children’s toys, etc. Drones
were of no use to mainstream users
until someone came up with the idea Hexo drone (Courtesy: http://www.tuxboard.com)
of using drones for clicking airborne
‘selfies.’ haptic learning process, vibrations are Anjali Srivastava, 23, of Varanasi
There are quite a few drone cam- used to guide a subject to learn motor designed a pair of red pants outfitted
eras available in the market. The Hexo skills even when they are not paying with a small electronic button that
Plus drone is compatible with GoPro any attention. Blind people can read sends a distress call to the nearest po-
camera. This drone follows and films and write Braille script without paying lice station when pressed. The signal
autonomously. Another competitor much attention using these gloves. acts as a tracker, so police can rush
product AirDog also tracks and fol- The motors used in these gloves straight to the victim’s location. There
lows you, meanwhile snaps photos and are programmed to give feedback in are already as many as 200 police sta-
videos of you and your action sport. the same sequence as Braille typing tions capable of receiving the alarm in
If you take a look at the amount of pattern. Researchers have attached vi- Varanasi and its surrounding areas.
funding these products raised on Kick- brating motors in the knuckles of these Tests will be carried out soon, and
starter, you realise that people are ea- gloves. During the test participants lawmakers may press for the technol-
ger to buy and experience these kinds were supposed to type words that they ogy to be used nationwide if they are
of products. Airdog quickly raised had learnt. successful.
$200,000 while Hexo Plus was hoping A group of people who had no Pathak joined forces with Sriv-
to raise $50,000 but, within three days, idea about Braille script participated astava, who is studying electronic
it passed $700,000. Twitter showcased in the test. Participants were intro- communication, to invent the device,
a company-sponsored account, Dronie, duced to repeated vibration sequences which lasts for about three months be-
at Cannes Lions International Festival while they were playing a game for 30
of Creativity recently, using which minutes. The research team instructed
people can take free dronie-selfie them to ignore audio cues and focus
videos. on a game. Once 30 minutes were
Flying drones is not that easy. It’s over, participants were asked to repeat
as difficult as driving a car for the the sequence. Even though they were
first time. A runner at west Austral- distracted while learning vibration se-
ian triathlon was hit by the drone in quences, their answers were accurate.
April. Drones can sometimes crash into Most of the people learnt 70 per cent of
people too. Braille script after the test.

Learn without paying A pair of jeans to fight


attention using smart gloves against rape
Researchers from Georgia Institute Two young Indian women have come
of Technology have succeeded in up with a creative way to combat their Outraged by the prevalence of sexual violence
building a pair of smart gloves for country’s pervasive rape problem: a against women in India, students Diksha Pathak
(left) and Anjali Srivastava have created a
blind people. The gloves are based on pair of high-tech jeans. high-tech pair of jeans designed to prevent rape
passive haptic feedback learning. In Students Diksha Pathak, 21, and (Courtesy: http://nypost.com)

16 August 2014 | Electronics For You www.efymag.com


technology nEWS
fore the batteries need to be replaced. The students’ timing
couldn’t be better. Very recently, a UN child’s rights com-
mittee charged Indian authorities with not doing enough to
fight sexual violence after two teenage sisters were gang-
raped and hung from a mango tree in a rural village in Uttar
Pradesh.

World’s fastest maglev toy train


Men love toys, particularly toys that are a hell lot more than
just toys. Take this toy for example. Built by Takara Tomy, it
uses maglev technology, the same used by those extremely
fast trains you have probably ridden in East Asia or watched
on TV. Basically, this toy is a maglev train that’s capable of
putting every toy train built in the history of mankind to
shame. The toy can reach speeds of up to 600 kilometres
per hour (relative to its scale) which, to the untrained eye, is
nothing but a quick blur!

World’s fastest maglev toy train (Courtesy: http://newlaunches.com)

The train uses its own magnet that levitates it off the
plastic track. The track is also laced with magnets, enabling
the toy to follow the principles of magnetism to the fullest
and do things most of us have never seen a toy do. The
air-cushion created between the train and the plastic track
reduces friction to such an extent that the toy zips around
quicker than you can scream “maglev!”
The train will hit store-shelves by 2015 and will come
with a price tag of approximately US$ 98. But we don’t
recommend you buy one of these for your offspring, at least
until he/she is old enough to spell “magnetic levitating
train” in less than ten seconds.

This robot can make you a super-human


Researchers from MIT have developed a robot that helps in
enhancing experience of day-to-day activities. This wrist-
mounted robot can easily perform tasks with one hand for
which you usually need both hands, such as opening jars,
twisting screwdriver, stirring coffee by holding mug, lifting
heavy jobs, etc.
The device has two extra fingers adjacent to thumb and
small finger of user’s hand. It has control algorithm which

18 August 2014 | Electronics For You www.efymag.com


technology nEWS

MIT researchers are developing extra robot limbs that can help out humans where
an extra hand, arm, or leg might be useful (Courtesy: http://www.gizmag.com)

enables the user to grab or hold different objects firmly. It


learns the natural movement of hand and performs tasks
without any extra command. The robot is designed to learn
the natural movements of fingers.
The device has actuators in it, which are linked together
to apply force. These actuators create same strength as that
of human fingers. This robot has multiple position-recording
sensors. Researchers have developed the control algorithm
of robot on theory basis of bio-mechanical synergy. Record-
ings collected from sensors are used to optimise the algo-
rithm in order to assume certain posture of hand.

Smart seats to alert sleepy car drivers


Number of car accidents is rising rapidly in most countries.
Most of these accidents happen due to drivers’ negligence;
they tend to lose their alertness due to dizziness they feel
while driving. Researchers from Nottingham Trent Univer-
sity have developed smart seats for cars with the help of a
firm named Plessey. These seats alert the driver when he or
she starts falling asleep. Researchers have used ECG sensors
in seats. These sensors detect driver’s heart rate and detect if
the driver is falling asleep due to fatigue.
The team is planning to implement fabric-based sen-
sors in seats, which can send a warning message to drivers
and ask them to pull over. The system can also trigger car’s
cruise control or lane departure technology, if driver ignores
the warning. Using wireless network, the sensors can send
information to nearby traffic control centre.

Smartphone to analyse your DNA


Researchers from Polytechnique Montreal and Gorilla Glass
manufacturer Corning are attempting to achieve something
very useful for any forensic expert. They are developing
display sensors for smartphones which can use user’s spit
to not only detect the body temperature but also analyse his
DNA. The researchers claim that sensors can be embedded
inside the smartphone’s display, which will allow users to
check their body temperature, help diabetic patients to check
their blood sugar levels and work with platforms like Ap-
ple’s Homekit to give detailed report on user’s health.

www.efymag.com Electronics For You | August 2014 19


technology nEWS
while they lay in an MRI scanner. market and expects AirDog to be of
The process showed how their brains particular interest to recreational par-
would respond to different anatomi- ticipants of freestyle BMX, motocross
cal features they saw. This gave the and skateboarding, as well as water-
researchers a database of responses, sports such as surfing, kite-surfing and
across several areas of the brain. The wake-boarding.
volunteers were then shown a set of
entirely new faces and their responses Intellectual property for
to the new images were measured. capacitive-touch sensing
The researchers compared these re- devices
Researchers are developing new display sensors sponses to the database, following Renesas Electronics has developed an
for smartphones that will read the user’s spit to not
only detect the body temperature, but also analyse which they were able to reconstruct innovative new intellectual property
the DNA (Courtesy: http://www.indiatimes.com) the image the volunteers were look- (IP) that implements industry-leading
ing at. capacitive-touch sensing technol-
The researchers have also devel- ogy suitable for home appliances and
oped first-of-its-kind laser-written Auto-follow sports drone set healthcare equipment, such as blood
guiding system. It can further help for take-off pressure and blood glucose meters.
these advancements and use laser into Stratasys, a leading global provider of The IP achieves high-touch sensitiv-
the glass to create pathways which 3D printing and additive manufactur- ity five times better than of Renesas’
transmit data in form of small light R8C/3xT microcon-
beams, as waveguides act as a tunnel trollers, as well as high
to channel these lights. It is similar to noise immunity allow-
how wires convey electric signals. If it ing the technology to
is added to a smartphone along with pass strict noise tests.
readable code, it can open the doors Renesas IP supports
to many opportunities by such device the mutual capacitance
makers. method which is more
reliable and versatile
Images from your mind than the common self-
on a screen capacitance method.
Researchers in the US claim to have Renesas will also
built a unique machine that can extract provide development
images from people’s brains and then tools to make appli-
project them on a display screen. Yes, cation development
you heard that right! Alan Cowen, a 3D-printed auto-follow drone (Courtesy: http://www.unmanned-aerial.com) easier. For human
neuroscientist at the University of Cali- machine interface ap-
fornia, Berkeley and his co-researchers, ing solutions, has announced that UAV plications for electric and electronic
Brice Kuhl of New York University start-up company, Helico, has success- equipment, touch-key interfaces have
and Professor Marvin Chun of Yale, fully introduced AirDog, the world’s been the subject of increasing attention.
have built this one-of-its-kind system first automated drone designed to The use of capacitive-touch technology
that envisions a future where cops and track and video outdoor sports and is being rapidly adopted because it can
investigative agencies could generate activities, using Stratasys 3D printing easily improve reliability in product
images of criminals from the mind of technology. Aimed primarily at the design and enhance the end-user ex-
a witness! consumer market, AirDog is an inno- perience.
The machine has been used to vative, yet simple-to-use ‘quad-copter’ For home appliances used in the
accurately reconstruct human faces that operates via a wrist-worn tracking kitchen, it is often the case that the ap-
based on data received from a brain device and accommodates a standard pliance will be splashed with water,
scanner, until now. However, the same GoPro sports camera. or the user will be wearing gloves.
approach could be used to extract im- Users can automatically capture ex- Besides, equipment such as IH stoves
ages from people’s dreams, memories citing live aerial video footage and still emit strong electromagnetic fields. So
and imagination, in the coming days. photography of themselves, having set a technology that provides both high
The methods yield strikingly accurate distance, speed and height levels for sensitivity and high noise immunity
neural reconstructions of faces. AirDog to follow. Helico is specifically can reliably respond to the static ca-
For research purposes, six volun- targeting the outdoor ‘extreme’ sports pacitance when such end products
teers were shown as many as 300 faces are used.
Check efytimes.com for more news, daily
20 August 2014 | Electronics For You www.efymag.com
Futuristic Electronics

Almost Here: Self-Learning,


Self-Healing Computers
Processors that mimic the human brain could be the next big disruption in computing

Mimicking the mammalian Both the cores were fabricated in 45nm

H
Janani Gopalakrishnan Vikram
brain in function, size and silicon on insulator (SOI) comple-
ow long can the indus- power consumption mentary metal oxide semiconductor
try rely on Moore’s (CMOS) and contained 256 neurons.
Law? Today’s com- One of the largest and oldest pro- One core had 262,144 programmable
puters are rather too jects in this direction is the DARPA synapses while the other had 65,536
good at calculating sponsored Systems of Neuromorphic learning synapses. Then came the
stuff and can achieve anything that can Adaptive Plastic Scalable Electronics Brain Wall—a visualisation tool that
be reduced to a numerical problem. (SyNAPSE), which is contracted main- allows researchers to view neuron
But complex problems, which need ly to IBM and HRL, along with some activation states in a large-scale neural
a good amount of reasoning or those US-based universities. The goal of the network and observe patterns
that need so-called ‘intuition,’ require project is to build a proces- of neural activity as they move
too much programming and hence too across the network. It helps visu-
much processing and power too. Just alise supercomputer simulations
stuffing more transistors into as well as activities within a
smaller chips will neurosynaptic core.
take us nowhere. Meanwhile, in 2012, IBM
So, what next? demonstrated a computing
Seeking to system called TrueNorth
move to the next that simulated 530 billion
new frontier of neurons and 100 trillion
computing, research synapses, running on the
teams across the world’s second-fastest
world are trying to operating supercomput-
move away from tra- er. TrueNorth was sup-
ditional chip designing ported by Compass—a
methods and radically multi-threaded, mas-
redesign memory, com- sively parallel func-
erg) tional simulator and
putation and communica- e id e lb
y of H
tion circuitry based on how : U n iversit a parallel compiler
y
urtes
the neurons and synapses of y s te m (Co that maps a network of long-dis-
s
scale
wafer
the brain work. This will be romo
r p h ic tance pathways in the macaque mon-
A neu
a big leap in artificial intel- Sca le s — sor that imitates a key brain to TrueNorth.
Brain
ligence, eventually resulting mammal’s brain in function, size Last year, they had more updates.
in self-learning computers that and power consumption. Specifically, IBM revealed that the chips are radi-
will be able to understand and adapt “It should recreate 10 billion neurons, cally different from the current Von
themselves to changes, complete tasks 100 trillion synapses, consume one Neumann architecture based ones.
without routine programming and kilowatt and occupy less than two li- The new model works with multiple
work around failures too. Such self- tres of space.” Since it started in 2008, low-power processor cores working
learning computers are commonly the project has seen some interesting in parallel. Each neurosynaptic core
dubbed as ‘neuromorphic’ as they results. has its own memory (synapses), a
mimic the human brain. Here, we look The first breakthrough came in processor (neuron) and communica-
at some of the significant strides in this 2011, when IBM revealed two work- tion conduit (axon). By operating these
direction. ing prototypes of neurosynaptic chips. suitably, one can achieve recognition

22 August 2014 | Electronics For You www.efymag.com


Futuristic Electronics
and other sensing capabilities similar of neuromorphic
to the brain. IBM also revealed a soft- processors.
ware ecosystem that taps the power The neuro-
of such cores, notably a simulator that morphic proces-
can run a virtual network of neuro- sor constructed by
synaptic cores for testing and research them consists of
purposes. a 20cm-diameter
To make use of these neurosynaptic silicon wafer con-
cores, IBM proposes a programming taining an array of
model based on reusable and stackable identical, tightly-
building blocks called corelets. IBM’s connected chips,
ultimate goal is to build a processing with mixed-signal
system with 10 billion neurons and circuitry. While the
100 trillion synapses drawing just one IBM’s Brain Wall (Courtesy: IBM) simulated neurons
kilowatt of power. Currently, IBM and are analogue, the
Cornell University are working on the also taught the processor to perceive synaptic weights and inter-chip com-
second generation of neurosynaptic things the way humans do, based on munication are digital. Each wafer
processors, which will also emulate mathematical models created by neu- contains 48 reticles, each of which in
256 neurons each, like the first attempt. roscientists. turn contains eight high-input-count
But with a newly developed inter-core These models accurately characterise analogue neural network (HICANN)
communication, the new processors biological neuron behaviour when they chips, making a total of 384 identical
are expected to contain around 4000 are sending, receiving or processing chips per wafer. Each 5×10 mm2 HI-
cores each, making a total of around information. Qualcomm aims to create, CANN chip contains an analogue neu-
one million neurons per processor. define and standardise this new process- ral core (ANC) as the central functional
ing architecture, which they call the neu- block, along with supporting circuitry.
A chip that can anticipate ral processing unit (NPU), so that it can In the current setup, each of the 384
user actions be used in a variety of devices alongside chips implements 128,000 synapses
Last year, Qualcomm revealed a suc- other chips, so that a combination of pro- and up to 512 spiking neurons, total-
cessful effort in this direction. Their gramming, learning and self-correction ling to approximately 200,000 neurons
Zeroth project was driven by an under- will characterise future devices. and 49 million synapses per wafer.
standing of people’s changing expecta- To demonstrate the success of Such a highly parallel chip design
tions from mobile devices. In the future, Zeroth, last year Qualcomm built a with configurable electronic neurons
people will want their devices to un- robot using the NPU and taught it to helps the team to understand the
derstand them and help them without do various things such as pick only dependencies, synchronisation and
anything being told. They will want to the white from a selection of assorted communication among neurons and
interact more naturally with their devic- boxes, sort and arrange toys in a kid’s synapses, so the knowledge can later
es. “The computational complexity of room and so on, all by ‘teaching’ and be applied to computing.
achieving these goals using traditional not ‘programming’ it.
computing architectures is quite chal- Super chip
lenging, particularly in a power- and An analogue brain for prosthetic limbs
size-constrained environment vs in While the previous two examples are A team at Stanford University, headed
the cloud and using supercomputers,” based on ‘digital neurons,’ a neuro- by Kwabena Boahen, has also devel-
writes Samir Kumar, director–business morphic system being developed by oped brain-inspired microchips, details
development, Qualcomm. the University of Heidelberg as part of which were revealed in an IEEE con-
Hence, they set out to create a new of the European Union sponsored ference earlier this year. The team has
biologically-inspired computer proces- Human Brain Project, is based on ana- used 16 custom-designed ‘Neurocore’
sor designed like the human brain and logue circuitry, which makes it closer chips to develop a circuit board called
nervous system so that devices could to the real brain! the ‘Neurogrid’ that can simulate one
have embedded cognition driven by In order to understand the working million neurons and billions of syn-
brain inspired computing. Eventu- of the brain, from that of individual aptic connections. The Neurogrid is
ally, Zeroth was born. Zeroth-based neurons to whole functional areas, 9000 times faster than today’s personal
products will not just have human-like the BrainScales project takes three computers, and is about 100,000 times
perception but also the ability to learn approaches: in vivo biological ex- more energy-efficient than a PC-based
on-the-go based on feedback from the perimentation, simulation on petascale simulation of a million neurons. Ac-
environment, like we do. They have supercomputers and the construction cording to the team’s estimates, a PC

24 August 2014 | Electronics For You www.efymag.com


Futuristic Electronics
improving now. One, explains that although the SpiNNaker
of course, is the cost. Machine incorporates one million ARM
Currently, the devel- processor cores, the brain is so much
opment of each Neu- more complicated that they will be able
rogrid uses a 15-year to get to just one per cent of the scale of
old fabrication pro- the brain with one million chips.
cess and costs around Last year, the SpiNNaker archi-
$40,000. By using tecture was put to work on a robot
modern processes and developed by Prof. Jörg Conradt at
by fabricating chips Technische Universität München. To
in larger volumes, the the robot’s back, the team attached
cost could be brought a SpiNNaker board with chips that
down to $400 per mil- simulated a neural network to process
lion-neuron board. data from the robot’s eyes or ‘silicon
Stanford’s Neurograid emulates a million neurons across sixteen
Secondly, the retinas’, in the same way the brain
neurocores (Courtesy: Stanford University) team is also working would. The robot was programmed to
on creating a neu- recognise shapes ‘+’ and ‘x,’ and take
consumes 40,000 times more power rocompiler to enable people to use a specific action for each. For example,
than a Neurogrid. the board without knowing anything when it spotted a ‘+’ the robot moved
Such speed and low-power char- about synapses and neurons. forward towards it and when it saw an
acteristics of the Neurogrid make it The third challenge concerns power ‘x’ the robot retreated.
an ideal platform to model and un- consumption. Despite being thou- This demo is just the beginning.
derstand the functioning of the brain. sands of times more energy-efficient Over time, the working of, and learn-
Moreover, modified Neurocore chips than today’s PCs, the Neurogrid still ing from the SpiNNaker Machine, will
can also be used for other nature-mim- lags behind when compared to the be applied to robotics, computer sci-
icking functions, such as say, to control human brain. According to Boahen’s ence and neuroscience. It will provide
prosthetic limbs. This is considered one paper, the human brain, with 80,000 a deeper understanding of the brain’s
of the most promising applications of times more neurons than Neurogrid, working, which will hopefully help
the Neurogrid, and Boahen is working consumes only three times as much develop treatments for various men-
very closely with other teams at Stan- power. So, arriving at such energy ef- tal disorders including Alzheimer’s
ford University to achieve this. ficiency levels is a huge challenge that disease.
Comparing the Neurogrid to other faces not just Boahen’s team but the Apart from these key projects,
similar projects, such as SyNAPSE and whole global community of neuromor- there are other global efforts to create
Brain Scales, Boahen writes in his IEEE phic engineers. neuromorphic chips. There are also nu-
paper: “Each of these research teams merous efforts to create brain-inspired
has made different technical choices, Spinning the future software that enable conventional
such as whether to dedicate each Another promising sub-project under processors to imbibe deep-learning
hardware circuit to modelling a single the European Union’s Human Brain capabilities. One good example is the
neural element (e.g., a single synapse) Project is the University of Manches- recent deep-learning processing system
or several (e.g., by activating the hard- ter’s SpiNNAker—a project that Steve developed by Purdue University that
ware circuit twice to model the effect Furber, co-creator of the ARM proces- uses software cum hardware innova-
of two active synapses). These choices sor is deeply involved in. tions to enable smartphones to quickly
have resulted in different trade-offs in The team has developed a new grasp and understand their environ-
terms of capability and performance.” brain-inspired computer architecture ment by instantaneously overlaying
Boahen arrives at a single metric to called SpiNNaker, which is being used text tags on whatever the camera
calculate the total system cost including to develop the SpiNNaker Machine, a captures.
the size of the chip, how many neurons parallel computing platform made up Overall, engineers across the world
it simulates and the power it consumes, of one million ARM processor chips. are beginning to understand that the
and uses it to show the Neurogrid as Each SpiNNaker chip, designed by intuitive and úber-powerful comput-
the most cost-effective way to simulate the team and fabricated in China and ing that the future calls for is possible
neurons, in keeping with his goal of Taiwan, features 18 core processors. only by mimicking some or all aspects
creating a system affordable enough to The machine will feature approxi- of the human brain, and are going all
be widely used in research. mately 56,000 of these super-thin chips, out to achieve this. 
However, there are a few areas mounted on individual boards carry- The author is a technically-qualified freelance
that the team is seriously working on ing 48 units. In a media report, Furber writer, editor and hands-on mom based in Chennai

26 August 2014 | Electronics For You www.efymag.com


MANUFACTURE

Part 2 of 2
Flexible Electronics: What’s the Use
Having dealt with the materials used for flexible electronics, types of flexible circuits and
their integration process in first part of this article, let us now focus on the applications of
flexible ciruits

K. MOHAN KUMAR Before any of this happens,


though, researchers have to

W
hy do we need another form rethink what they know about
of electronics? Standard electronics. None of the flex-
silicon-chip-based electron- ible electronic devices under
ics is making great strides in miniaturi- development would match the
sation, cramming more functionality billions of transistors that now
into smaller chips. Couldn’t we just fit on silicon chips, or their
embed these chips into flexible materi- billions of on-off cycles per sec-
als to create flexible applications? ond. They would not have to.
Answer is No. New applications Despite the challenge, flexible
like organic light-emitting diodes electronics promises changes
(OLEDs) and organic photovoltaics that go beyond folding dis-
(OPVs) need big areas. “With silicon- plays, inexpensive solar cells,
based circuits, you would need huge antennae and sensors. It could
numbers of embedded chips to get the Fig. 10: A bionic ear veer off in some unexpected
necessary intensity and uniformity. directions, such as helping
That would be prohibitively expensive paraplegics walk again.
and would generate so much heat lo-
cally, you would melt the substrate!” Applications in
Flexible electronics could transform health care
the way we make and use electronic Flexible electronics has at-
devices. Flexible electronics opens the tracted a lot of attention for its
door to foldaway smartphone displays, enormous potential in many
solar cells on a roll of plastic and ad- important applications, such
vanced medical devices—if we can as wearable health monitoring
Fig. 11: Schematic diagram of the active-sensor-matrix thin
figure out how to make them. Nearly film for the artificial nose and tongue devices and medical implants.
everyone knows what the inside of a While a number of approaches
computer or a mobile phone looks like: antennae that conform to the roofs and to making flexible sensors or electron-
A stiff circuit board, usually green, trunks of our cars. Or flexible implants ics have been developed over the last
crammed with chips, resistors, capaci- that can monitor and treat cancer or two decades, flexibility in electronic
tors and sockets, interconnected by a help paraplegics walk again. materials is very attractive for medical
suburban sprawl of printed wiring. Second, flexible electronics might and bioengineering. Living organisms
What if our printed circuit board was cost less to make. Conventional semi- are intrinsically flexible and malleable.
not stiff and was flexible enough to conductors require complex processes Thus, flexibility is a necessity for suc-
bend or even fold? and multi-billion dollar foundries. cessful integration of electronics in bio-
Researchers hope to print flexible elec- logical systems. Furthermore, in order
Why flexible electronics tronics on plastic film the same way we to carry out daily tasks, flexibility is
Flexible electronics is in vogue for two print ink on newspapers. “If we could less likely to hinder over stiffness.
reasons. First, it promises an entirely make flexible electronics cheap enough, Recently, some electronic devices
new design tool. Imagine, for example, you could have throwaway electronics. have been integrated into human bod-
tiny smartphones that wrap around You could wear your phone on your ies. One example is the bionic eye.
our wrists, and flexible displays that clothing, or run a bioassay to assess Here a vision-compromised patient
fold out as large as a television. Or your health simply by wiping your nose requires an electrically-active address-
photovoltaic cells and reconfigurable with a tissue,” Gomez says. able matrix array, with each unit or

28 August 2014 | Electronics For You www.efymag.com


MANUFACTURE
pixel recording an image and trans- well as sweat-elemental analysis. As density (J/kg) of fossil fuel compared
mitting this to the patient via the optic with the lab-on-a-chip (LOC) applica- to the batteries, with the implication
nerve. Such technology is not restricted tions, these thin films will become a that electric vehicles require unfeasi-
to vision and is applicable to many key component of our approach to bly heavy and large batteries to store
other types of sensation. next-generation healthcare. Heat dis- equivalent energy as a tank of fuel.
A microarray thin film can also tribution in the body, sweat content Besides low energy density, batteries
be integrated into bed linen and pa- and frequency or postural pressure suffer from low power density (W/
tient dormitories, and can operate in on part of the body can all reveal vital kg), leading to electric vehicles with
similar ways to monitor and identify information on pathological symptoms comparatively low performance when
abnormalities in body temperature, as or recovering stages. compared to equivalent fuel-powered
PET
Further applications of microarray vehicles. Despite these issues, increas-
Carbon nanofibre systems based on such flexible thin- ingly scarce fossil fuel resources, as
MnO2 + CNT cathode
Polymer electrolyte
film technology are a facilitator for ar- well as environmental incentives, have
Zn Foil Anode tificial noses and tongues, as shown in increased the adoption of electric vehi-
PET
Fig. 11. Sensory receptors in olfactory cles, fueling research and development
(nose) and gustatory (taste) systems in this field.
(a)
have a range of chemical receptors. Advances in thin-film battery
Many of these receptors sense par- technology through the use of nano-
(b) ticular chemical properties, including structures for enhanced energy density
acidity, salt concentration and enzyme and hybrid supercapacitor allowed
affinity. increased energy and power densities.
It can also be used to monitor the Lightweight substrates, such as poly-
pulses from brain and analyse the ethylene terephthalate (PET) and pa-
changes and design the treatment per, have led to a reduction in battery
based on the present situtation of the weight. Flexible, thin-film technology
patient. is especially beneficial in this instance,
as it allows batteries to be moulded
In automotive industry into suitable shapes at relatively low
Fig. 12: (a) battery structure, (b) optical
micrograhy of a flexible battery during flexing The combustion reaction has fueled the costs.
development of humanity Flexible thin-film technology may
since the discovery of fire. also find applications in road signs
The main reasons for the and markings. Intelligent roads will be
ubiquity of combustion engineered with the aim of improving
are twofold. The first re- road safety, lowering road congestion
lates to its intrinsic mass and energy consumption. The road
and volume energy den- and vehicle will be able to interact to
sities. For example, one dynamically adjust either party to en-
kg of crude oil contains ergetically optimise their systems. The
Fig. 13: The Morph mobile phone concept, where flexibility and
nearly 50MJ of chemical advantage of flexible thin-film technol-
transparency become important (Courtesy: Nokia Research) potential energy. The sec- ogy is its mechanical durability and
ond relates to storage and ease of inexpensive integration within
portability. Crude oil hap- the existing road networks.
pens to be liquid at sur-
face conditions, making In energy management
it easy to store, transport and mobile devices
and convert, which is fun- The innovative gadgets that we are
damental for applications presently experiencing are made pos-
such as transportation. sible by flex circuits in the industry.
Although electric ve- Today, mobile and other electronic
hicles trace their inven- gadgets manufacturers are design-
tion to the mid-1800s, ing the products keeping in view the
their widespread adop- future scope of the product and its
tion has not yet mate- use in more than one way. The ease of
Fig. 14: Components of a flexible, wearable mobile energy-
rialised. This is partly handling the device is also an impor-
harvesting system due to the high energy tant factor that needs to be noted while

30 August 2014 | Electronics For You www.efymag.com


MANUFACTURE
with an energy conversion devices for use in solid-state lighting
efficiency (η) of up to 25%. applications.
Despite significant develop- There are two main families of
ment over the past decades, OLEDs. Those based on small mol-
the high cost of Si-based ecules and those employing polymers.
solar cells is still a bottleneck Adding mobile ions to an OLED
for the implementation of creates a light-emitting electrochemi-
solar electricity on a large cal cell or LEC, which has a slightly
scale (in the absence of gov- different mode of operation. OLED
ernment subsidies). The de- displays can use either passive-matrix
velopment of new materials (PMOLED) or active-matrix address-
Fig. 15: Demonstration of a flexible OLED device and concepts for PV could be ing schemes. Active-matrix OLEDs
a way to reduce the overall (AMOLEDs) require a thin-film transis-
production costs, as well as tor backplane to switch each individual
increase efficiency. The latter pixel on or off, but allow for higher
is crucial in view of applica- resolution and larger display sizes.
tions in mobile devices that An OLED display works without
have a limited surface area. a backlight. Thus, it can display deep
Thin-film solar cells, such black levels and can be thinner and
as silicon, cadmium telluride lighter than a liquid crystal display
(CdTe), copper indium gal- (LCD). In low ambient light condi-
lium diselenide (CIGS) and tions, such as a dark room, an OLED
thin-film crystalline silicon screen can achieve a higher contrast
are termed ‘second-genera- ratio than an LCD, whether the LCD
tion PVs.’ The development uses cold-cathode fluorescent lamps or
of thin-film solar cells has LED backlight.
Fig. 16: An artistic illustration of an interactive e-skin device
been driven by the potential
where intensity of the emitted light corresponds to how hard the
surface is pressed of cost reduction in manufac- e-skin for human-machine
turing. An even cheaper and integration
manufacturing. Now-a-days the de- versatile approach lies in the exploita- You might think that temporary tattoos
vices are manufactured in such a way tion of organic photovoltaic (OPV) cells look cool, but what if they could also
that these are embedded in our daily and dye-sensitised solar cells (DSSCs). collect and transmit information about
life beyond the limit of separation. These can be manufactured economi- your heart rate, temperature, muscle
Nano-optoelectromechanical sys- cally compared with silicon cells, for contractions or brain waves?
tems (NOEMS) could access energy example, by roll-to-roll processing, A new flexible electronic circuit
sources arising at the nanoscale, con- even though they have low η. promises to do just that, by moving
verting energy from environmental with the skin and staying in place with-
sources, such as ambient noise or elec- In displays and human- out any adhesive. The research used
tromagnetic radiation, to mechanical machine interactivity existing semiconductor technology to
vibrations. This route opens up many One of the most demanding applica- imprint integrated circuits onto a thin,
possibilities where device deformation tions of flexible electronics is in OLED flexible silicon film that can be applied
allows for transformability and new displays. An OLED is a light-emitting directly on the skin. With the interactive
paradigms of user interaction, such as diode (LED) in which the emissive e-skin, we could form an elegant system
in the Nokia Morph Concept. electroluminescent layer is a film of on plastic that can be wrapped around
There are different ways to harvest organic compound that emits light in different objects to enable a new form of
or scavenge energy from the sur- response to an electric current. This human-machine interface.
rounding or ambient environment, layer of organic semiconductor is situ- In addition to giving robots a finer
such as the collection of low-frequency ated between two electrodes. Gener- sense of touch, the engineers believe
vibrations, heat (via temperature gradi- ally, at least one of these electrodes is that the new e-skin technology could
ents), biomechanical motion and solar transparent. OLEDs are used to create also be used to create things like wall-
energy. Among these, solar energy is digital displays in such devices as tele- papers, which double as touchscreen
perhaps the most promising. vision screens, computer monitors and displays and dashboard laminates that
Silicon is by far the most widely portable devices like mobile phones allow drivers to adjust electronic con-
used photon absorber and currently and PDAs. A major area of research trols with the wave of a hand.
dominates the market of PV devices, is the development of white OLED The mobile revolution has been

www.efymag.com Electronics For You | August 2014 31


MANUFACTURE
won, but the smartphones and tablets
Trend of flexible electronics market in future
that launched it have remained pretty
much the same throughout. In 2013, The global flexible electronics market is expected to reach US$ 25.9 billion by 2018,
according to a new report by Global Industry Analysts, Inc., propelled by the increasing
we saw the emergence of flexible
demand for lighter and smaller electronic products with low power consumption.
display screens as a viable option for The market, considered to be in an embryonic stage, is currently the focus of intense
personal electronics. And once the research by universities, research institutes and technology-driven enterprises. In future, the
technology is perfected, the range of market will offer immense potential for rapid growth with applications extending beyond the
possibilities gets a whole lot broader. traditional sphere to military, automotive, aerospace, medical and consumer applications.
How about a T-shirt that plays You-
Tube videos? Or a 229cm (90-inch)
high-definition TV which you can fold
and bring to a friend’s house for the
big game? All are starting to seem like
real possibilities.
The breakthrough came as research-
ers like those at Colaneri’s lab figured
out how to build display panels onto
paper-thin plastic substrates—thin
slices of material that act as semicon-
ductors—instead of glass. “We’ve al-
ways said that flexible displays are sort
of the beginning toward truly flexible
electronics,” he said. “The display in a
conventional phone or laptop or tablet
is the least flexible thing in there, since
it’s made out of a piece of rigid glass.”
The first wave of consumer gadgets “All of the names that you men- plastic electronics and printed electron-
using that and similar technologies is tioned are certainly sniffing around ics verticals, is driven by the global de-
under way, with more promised in the (the idea),” Colaneri said. “I think all mand for lighter and smaller electronic
near future. of the names that you’ve dropped are products that consume lesser power.
Korean gadget giants Samsung and also among the top-ten list of most Due to the fact that these devices are
LG have already rolled out TVs and paranoid, secretive organisations more shock-resistant, cost-effective
phones with curved display screens. known to man. They’re certainly think- to manufacture and can be flexed or
Apple has filed for a patent for an ing about it.” bended, they have the capability of
‘electronic device with a wraparound being integrated into portable devices,
display.’ At Google, one of CNN’s Conclusion clothing and packaging materials.
Thinkers, Mary Lou Jepsen, is a Flexible electronics is an emerging While the market for flexible elec-
pioneer in the field of display screens. field of science and manufacturing tronics is still in its embryonic stage,
She’s in the super-secret Google X technology, which enables planting of various new applications are being
lab, so there’s no telling what she and electronic devices onto conformable studied by universities, research in-
others are actually up to. But it’s hard plastic substrates. The flexible elec- stitutes and high-tech companies. The
to imagine new displays aren’t some- tronics sector, similar to large-area or technology is finding increasing appli-
where on the agenda. macro electronics, organic electronics, cation in various sectors, such as mili-
tary, computers, consumer products,
aerospace, automotive and medical.
The main end-use areas for flexible
electronics include electronic displays,
photovoltaics, sensors, lighting and
logic/memory applications among
others. The capability to build flex-
ible electronics, or electronic circuits
that are capable of being stretched
and bent according to requirement,
enables the user to expand the cur-
Fig. 17: Philips ‘fluid’ smartphone concept rent scope of functions supported by

32 August 2014 | Electronics For You www.efymag.com


MANUFACTURE
use of only rigid circuits. Further development of the
industry is expected to occur through the development
of suitable processes that facilitate the cost-efficient
manufacture of flexible electronics components and
the integration of rigid components customised for
various applications.
Budding electrical application areas, including
heaters, solar cells, batteries and lighting, are propel-
ling the growth of the worldwide flexible electronics
market. The technologies enable electronic systems to
be rolled, stretched, washed and worn, and thereby
conform to various architectural features. Flexible elec-
tronics components are also capable of biodegradation
with multiple-layer structures, which reduce the area
required and number of interconnections, while increas-
ing reliability of the system.
Key areas of application for flexible electronics in-
clude use in portable devices to provide a compact and
robust form factor for electronic devices as well as medi-
cal applications like the creation of a circuit that exactly
fits the gyri of the brain and enables the real-time study
of epileptic patients. Other applications include the in-
corporation of flexible circuits-based lightweight impact
sensors into the uniforms and helmets of soldiers to al-
low medics in providing better treatment to wounded
soldiers. Stretchable circuits are also capable of being
utilised with a standard balloon catheter to provide a
range of radio circuitry and sensors to monitor electri-
cal activity, pressure, temperature as well as blood flow
inside the patient’s body.
Organic electronic materials’ market is poised to
display exponential growth driven by increasing ap-
plications in conventional and niche areas, along with
expanding in numerous applications ranging from
wide-area displays and RFID tags to memories. Low
cost for fabrication and high degree of flexibility are the
two key factors driving the demand for organic elec-
tronics and its increasing penetration in the mainstream
market. The materials are also useful for new and
innovative applications, such as electronic paper and
smart windows, wherein inorganic conductors (silicon
or copper) cannot be employed. Organic conductors are
also expected to find application in emerging frontiers,
such as molecular computing.
Printed electronics, a new industry in its embryonic
stage today, can shape the future of printing, as well as
just about every other industry on the planet. Printed
electronics is the application of conductive and elec-
tronic components onto a material by means of a print-
ing process. It might not occur on a conventional press,
but the applied product will be liquid or semi-liquid in
form, and will cover a substrate pattern. 
Concluded
The author is a final-year student of KMIT affiliated to JNTUH. This article
is based on a paper he prepared for a technical seminar on the subject

34 August 2014 | Electronics For You www.efymag.com


innovation

Daylight Harvesting With


Automatic Lighting
Imagine the availability of 60,000 units of light energy through an automatic system that
monitors energy consumption to maximise efficiency. At the age of 48, Sekhar Nori, founder
& CEO of Skyshade Daylights Pvt Ltd, teamed up with his colleagues to create an automated
and integrated daylight harvesting system
How it works
The daylight system part of IDS has a light
collector, a reflective system and light
diffusers. The light collector collects sun
light and the reflective system transports
this light just like an optical fibre. The light
diffusers take the light out of the tube and
diffuse it into the building.
Lighting controllers. The lighting
controllers take care of the entire work-
ing of the IDS and also help in switching
between day light and electrical light-
ing. The lighting controller has three
parts—daylight sensing, control system
and a central control panel.
Sekhar says, “The light sensing ele-
Sneha Ambastha increases the return on investment. ment used by IDS is a special light sensor
built by us. This is an open loop light

S
ekhar Nori has come up with a What it is sensor. Normally the light sensor used in
product he calls the Day360 In- It is a concept where both natural day building works in a closed loop. The light
tegrated Daylight System (IDS). light and electrical lighting are inte- sensor that we build gives a continuous
This is a lighting system that harvests grated into a single and simple plat- feedback to the lighting controller. In an
day light to provide free lighting dur- form. Depending on the availability of open loop sensor the light is measured
ing the day and electrical lighting at day light, the electrical lighting system from the ambient sky and never measured
night. It is controlled automatically by switches on or off to complement light in the task plane. Whereas in closed loop
the system but has manual override in the area. sensor light is continuously measured at
option for those special occasions. Although the Day360 IDS was de- the task pane (a task pane could be either
Sekhar Nori says, “During my duced from the idea of Lightpipe (a so- floor level or any other plane) and is given
former experience with solar energy lar daylight system), it is a completely as a feedback to the controller.”
field, where I worked with solar con- new solution with daylight system The light sensor continuously meas-
version, I found that the conversion being just a part of it. The IDS makes ures the ambient sun light. If the ambient
ratio of solar energy is comparatively use of electrical lighting, day lighting, sun light is less than the desired light in-
depressed. This caused the system light sensors and a lighting controller tensity required in the room, the lighting
costs to be relatively high. This is for an all-in-one system that even has controller turns on the electrical lighting.
when we recognised that it is time smart meter functionality. The electrical lighting is divided into
to convey the visual solar energy as Sekhar says, “We did a lot of R&D three groups, each representing a step
light itself.” for IDS for about one-and-a-half year. for switching on or off. Depending upon
In this system you do not convert This year we finally finished its design the light intensity, the controller turns on
day light into any other form of energy and fabrication. IDS is a completely required number of steps in electric light-
like heat or electricity. This helps in- new way of providing an automatic ing. Nori adds, “The lighting controls and
crease the product’s life, the product be- lighting solution for commercial build- the central control panels are also built
comes more affordable which, in turn, ings.” in-house. All lighting systems can be con-

36 August 2014 | Electronics For You www.efymag.com


innovation
trolled through central control panels.”
Monitor and control energy. The control system monitors
the energy consumed and the savings on the lighting system like
a smart meter. It also allows the manual override of the system,
monitors failures and the data inputs.
Sekhar explains that the main technology behind IDS is
the response of electrical lighting to the available day light. He
adds, “In this system we have built a couple of other features
too, like the smart metering of energy consumption. The ener-
gy consumption of the electric lighting system is continuously
measured, metered and displayed in a control panel. So the
utility managers or the facility managers can actually monitor
the power consumption of the lighting systems and track the
energy savings they are able to make, and then they can also
convert it to carbon credits.”

To convince is a challenge
Sekhar says, “We are not used to the concept of day lighting
but are used to electrical lighting. The buildings too are built
in such a way that there is no methodology to use day light. So
people stay connected to the electrical lighting without consid-
ering the use of day lighting. Our challenge here is to convince
people that we have a methodology to use this day lighting.
“We are trying to make a change in the concept of building
design and show that the day lighting can be an integrated
part of the building and devices can be built for effective use of
that. In last 4-5 years we have made a large impact by doing so
many projects across the country (based on previous Lightpipe
technology).”

Benefits
Day lighting is extremely good in terms of the psychological
and physiological benefits it delivers. Lots of research and
studies conducted for lighting prove that it is a great psy-
chological uplift when the building is day-lit. It improves the
mood of the people and enhances productivity.
The use of a day lighting system adds to the energy sav-
ings of the building by using sun light as a renewable energy
source. It also increases energy efficiency of a building and a
reduction in its carbon footprint.

Market strategy
Launched only in April, Day360 IDS targets large factories,
commercial stores, warehouses, etc. Nori says, “We are pres-
ently looking at the South Asian and Middle Asian markets for
IDS because there is ample sun light available here. The South
Asian neighbourhood is also an energy-deficit region, which
is not the case with the Middle East. We assume IDS to be fit
for this market and can be used extensively here. The energy-
saving benefits are very promising in these areas.”
Sekhar proudly shares, “Day360 IDS is first of its kind in
the world and does not take in any competitors yet. We have
filed for patents for this product.” 

The author is a technology journalist at EFY

www.efymag.com Electronics For You | August 2014 37


Technology Focus

Modular, Connected and Intelligent


Define Today’s Security Products
Sending an alert during an intrusion is a passé and can no longer be considered intelligent.
Smart is re-defined by today’s security systems. They study behavioural, temperature and
humidity patterns, come with advanced processing techniques. Let us take a look at some
of the latest and intriguing security devices from around the world

ABHISHEK A. MUTHA Called Canary, this device can be

M
easily connected to your existing Wi-
ost of the alarms Fi network and synced with a smart-
generated by secu- phone. If there is an intrusion, you are
rity products are notified, so you can remotely trigger
usually false and, the in-built siren to scare off the intrud-
when that happens, ers. The system also studies air qual-
there is great distress caused for every- ity, temperature, noise and humidity
one at the receiving end. The 15cm tall gadget has a built-in HD camera levels, and senses anything out of the
with night vision, microphone speakers, motion,
Security products today are packed temperature, air and humidity sensors and a
ordinary, including rapid changes in
with a lot of smart sensors. They siren (Courtesy: https://www.indiegogo.com) temperature levels that could indicate
study patterns, compare data and are a fire, for instance.
designed to generate genuine alarms. What makes this 15cm (6-inch) tall
Security devices are also much more gadget so smart? It comes with a full
interconnected to ‘things’ and are easy arsenal of sensors. It sees through an
to install. Most devices are now just HD video camera with night vision
plug-and-play type hassle-free systems. and 170-degree angle lens, microphone
In this article we talk about select speakers to pick up sound and sensors
security products from a plethora of for temperature, humidity and air
them released every year. Let us take quality. It also has triple-axis acceler-
them one at a time. ometer and a passive infrared motion
detector. It comes with a siren that
Intelligent device that The Canary device can also learn and track
a home’s average temperature and humidity sounds a 100dB+ alarm activated by
generates genuine alarms levels. Any changes in trends can be monitored
the Canary app.
using the smartphone app (Courtesy: https://
Would it not be great if you could have www.indiegogo.com) This device is highly customisable
an intelligent home security system? too. It can be activated at certain days
A system that could be installed and in a week or at a particular time, prob-
configured easily, would recognise ably when you are away. The different
your everyday movements at home sensors that come with this device can
and your pets’ too, warn of even slight be enabled and disabled depending
changes to generate genuine alarms on your needs. Alternatively, when
and, last but not the least, synchronise certain parameters are triggered, the
with your smartphone to notify you. system can be set to record and store
A screeching alarm is really annoy- in video mode. Users can check into
ing, especially when it is a false alarm. the system remotely and keep an eye
But a new security system claims to on the house when on a holiday or on
behave like a live-in security guard, Once an alert is sent, the user can choose to tour. The creators also claim that it has
analysing house occupiers’ move- call the police, sound the siren, ask a neighbour a bank-like encryption that prevents
to check-in or ignore the warning. Gradually,
ments. It sends relevant notifications with each alert, the device learns the behaviour hackers from gaining access to your
to avoid false alarms, such as those set and habits of its user and responds to certain system or invalidate sensors during
changes more accurately (Courtesy: https://
off by a wandering pet. www.indiegogo.com) break-in.

40 August 2014 | Electronics For You www.efymag.com


Technology Focus
Canary was founded by Adam pact motion sensor plugs into
Sager, formerly from Israel Defense a power outlet and alerts users
Forces, Chris Rill, who built sensors of activity at home with a push
for the US Military and Jon Troutman, or text notification as soon as it
former product design lead at General detects motion. It can be easily
Assembly. It was successfully funded configured with your existing
on an online campaign. In fact, it ex- Wi-Fi network. This motion
ceeded its pledged goal of $100,000 by sensor can be additionally
a whopping 1962%! It is moderately synced with a Wi-Fi camera to
priced at US$ 200. give you visual power.
Coming to the automation
DIY security systems can’t aspect, a combination of Wi-Fi
get any simpler Smart plug and the intuitive
If you are constantly worried about mydlink Home mobile app
what’s happening at home when you available for iOS 6 or above
are at work, travelling or away from and Android 4.0 or above
home for reasons of your own, worry smartphones and tablets, pro- D-Link’s Wi-Fi motion sensor (DCH-S150)
no more! With the aim of simplifying vides instant control over elec- (Courtesy: http://www.dlink.com)
home security and automation, this tronics from anywhere, any-
Wi-Fi motion sensor from D-Link lets time. For example, you easily
you know when something is moving pair a D-Link smart plug with
at home with an instant alert, making a Wi-Fi motion sensor to make
your home smarter and secure. home electronics immediately
It behaves like a completely con- react to motion, such as the
nected DIY home solution, and works lights to turn on as you walk
effectively and seamlessly when used in the front door, for the air-
with a Wi-Fi camera (so you can see conditioner to keep the living
what’s happening at home), Wi-Fi room cool while you are away,
Smart plugs (which provide a better and for music to play when MINI Z by American Science and Engineering, Inc. (AS&E)
grip over devices at your home) and a you step on the treadmill. (Courtesy: http://www.meetminiz.com)
free mydlink Home mobile app (so you This ability to control de-
know precisely what’s happening.) vices remotely, automate elec-
This device is modular and much tronics and get a quick view
simpler in terms of functionality as of what’s happening at home
compared to Canary. If you are looking from virtually anywhere puts
for a cost-effective yet simple solution, you in the driver’s seat. The
your search could end here. With just mydlink Wi-Fi motion sensor A MINI Z in action (Courtesy:
two buttons (WPS and Reset), and (DCH-S150) costs approxi- http://www.meetminiz.com)
an LED indicator on the outside, this mately US$ 40 and the Wi-Fi
plug-in device incorporates a PIR sen- smart plug costs about US$ 50. If you Engineering,
sor with 7.9m (26-feet) detection range, also opt for a Wi-Fi camera, the cost Inc. (AS&E). It A MINI Z image of an
two internal antennae and a wireless pretty much equals the cost of the Ca- basically pro- unattended bag revealing
frequency range of 2.4 GHz to 2.4835 nary security system. vides on-the- acellphone
pipe bomb and a
(Courtesy: http://
GHz complying with IEEE 802.11n g o d e t e c t i o n www.meetminiz.com)
standard. It also has Wi-Fi Protected Detecting hidden organic of bootlegged
Access (WPA/WPA2) and Wi-Fi Pro- threats quickly and items in hard-to-reach areas, such as
tected Setup (WPS) security protocols
wirelessly vehicle tires, small boats, furniture,
integrated. Finding threats in tight spaces can be a suspicious bags, walls and car interi-
Whether you want to get notified big problem. Keeping in mind officials ors. Accompanied by a Windows 8.1
when the kids get back from school, from different fields like maritime tablet PC embedded with an ASEIn-
make sure the dog goes outside during police, event security, border control, spection software, the MINI Z system
day time, or receive a text when the law enforcement and general aviation provides effective detection of explo-
garage door opens, this Wi-Fi motion security, the world’s first handheld Z sives, organic threats and contraband.
sensor makes it simple to stay aware of Backscatter technology imaging system Weighing 4 kg, with a scan speed
what’s happening at home. The com- was designed by American Science and of 15cm (6-inch) per second and four

42 August 2014 | Electronics For You www.efymag.com


Technology Focus
hours battery life, typically, it uses ment platforms. All video
AS&E’s signature Z Backscatter tech- evidence can be accessed
nology, producing a real-time image and stored locally or in a
of the scan target, bringing organic cloud for ongoing cases
materials that transmission X-ray sys- and trials. The software
tems can miss, such as drug, currency installs either in a stand-
and explosives to the fore by wirelessly alone, network or cloud-
connecting to the tablet. Unlike port- based mode.
able transmission X-ray systems, trace Bosch’s DINION 8000 (Courtesy: www.us.boschsecurity.com) The ability to function
detectors or density meters, the MINI in both high-definition
Z system provides an easy-to-interpret and standard-definition modes was
image to swiftly pinpoint organic con- one of the most notable features incor-
traband behind non-metallic surfaces. porated. This was achieved by adopt-
The operator controls the scanning ing the H.264 compression scheme and
function with the help of an uncompli- by increasing the camera’s internal
cated, intuitive graphical user interface memory from 4 GB to 16 GB. Another
Comparison of images from Bosch DINION IP
on the system’s dedicated tablet which using starlight technology and other cameras
notable change from its previous ver-
produces an image of the scanned area (Courtesy: www.us.boschsecurity.com) sion was the change in the lens itself.
that appears in real time. After consulting with a forensic expert,
The MINI Z system is safe for ment their actions. In the US, notably the company settled on the concept
bystanders, operators and the envi- the police departments from Farfield of a flat image for the camera, which
ronment as well. The system’s X-ray and Novato have deployed these cam- means no distortion because of the
dose conforms to the appropriate eras. While some police officers feel field of view. The ideal field of view
EURATOM, NCRP, ICRP and ANSI that this turns them into RoboCops, is 65 to 70 degrees, and hence the lens
radiation safety standards. It cannot be others feel more positively and consid- was designed with a 68-degree field of
used for scanning people, although the er it to be a means to prove their side view. That provides a very flat image
MINI Z is a low-dose and low-energy of the story. Despite some objections with no curvature on the back side of
Z Backscatter system. raised, like privacy issues and mixed the image. So, if one needs to forensi-
Some of the applications it can reactions from the officers, the use of cally enhance something, it is of high
be used for are public safety (quickly this technology is growing. quality all the way through.
screening unattended and suspicious This compact, 70gm, pager-sized, Some other improvements de-
bags and packages for potential terror- self-contained video recorder with a signed into this camera, in contrast
ist threats), border and security check- 16GB non-removable storage captures with the previous LE2, were ability to
points (screening vehicle bumpers, and provides convincing forensic mute audio. It was incorporated con-
tires, panels or interiors for concealed video evidence, and can be comfort- sidering the laws in some states that
threats such as drugs, cigarettes, explo- ably clipped on the uniform. It has the require two-party consent to record
sives and plastic weapons), drug en- most uncomplicated way of opera- conversations and an improved battery
forcement (investigation of suspected tion; it turns on/off by simply sliding life. It costs about US$ 900.
drug labs or fake currency), event the lens slide cover, which is very
security (screening of hand baggage convenient for activation in stressful Smarter surveillance with
and deliveries to ensure public safety) situations. With two video resolution advanced image processing
and VIP security (securing rooms and modes (1280×720 (HD) or 848×480 Taking into account the burgeoning re-
furniture for organic threats and IEDs (widescreen SD)), and battery life up quirement for security and safety prod-
to ensure personnel safety). to five hours for SD and three hours for ucts, more and more cameras are being
HD, it records at 30 frames per second stationed in neighbourhoods, districts
Wearable electronics to for up to 12 hours at SD resolution and or other locales where they are at the
enforce law and order up to 6 hours at HD. Video evidence is mercy of nature and other elements.
A body-worn video camera for law securely stored and tabulated with a Capturing video in dim and dingy are-
enforcement best fits police, private se- FIPS 140-2 compliant digital signature as, where most of the cameras fail, and
curity agencies and other law enforce- process which can prove that the video providing colour images when cam-
ment personnel. Seattle-based VIEVU has not been tampered with. eras transition to monochrome mode,
recently announced its latest offering The LE3 camera is powered by is a challenge overcome by this 5MP
in the wearable camera domain—the VIEVU’s VERIPATRO software system camera with starlight technology. Even
LE3. It is specifically designed for and can be integrated into existing at night, the DINION IP starlight 8000
professionals who need to video docu- video systems or other video manage- MP benefits users by providing details

44 August 2014 | Electronics For You www.efymag.com


Technology Focus
such as colour of vehicles or clothing, part is that the sniper would not even
which assist in the identification of know that he has been compromised
people and objects and reduce costs and he can be apprehended.”
associated with added illumination. The security agencies deployed for
This camera can be used for round- VVIP protection are already using im-
the-clock video surveillance. Regard- ported equipment for scanning the areas
less of surrounding lighting quality, being visited by the VVIPS. But Maini
time of the day or amount of object adds, “The equipment used by these
movement, it delivers relevant IP video agencies is almost two to three times
24x7. Capturing images at 5MP reso- more expensive than the device devel-
lution at up to 30 frames per second, oped by us, and they have shown keen
even under extreme low-light condi- interest in the product developed by us.”
tions, it gives images in fine detail. The
latest sensor technology combined Many more interesting
with the sophisticated noise suppres- VIEVU’s LE3 body-worn HD video camera
innovations in security
sion results in a light sensitivity of Relying on the fact that there is 1-in-
0.0121 lux at full 5MP resolution in sensitivity, this camera is regarded as 2.25 trillion chance of a false ID with
colour and even 0.00825 lux at 1080p the ultimate 24x7 camera for IP video irises, EyeLock, an iris-based iden-
resolution. surveillance. tity management technology solutions
Advanced image processing tech- company, released an iris biometric
niques take this camera to another Laser-based device solution in September last year. It pro-
level. Intelligent video analysis (IVA) exposes hidden snipers vides video-based iris authentication in
basically tracks and concentrates on Snipers are always a threat to eminent motion and at a distance. This system
pertinent situations as well as adds and important personalities attending uses video of both your irises to verify
sense and structure to stored video, special events or delivering a public your identity.
allowing you to quickly retrieve the speech. India’s Defence Research and Another groundbreaking inno-
correct data. The DINION IP starlight Development Organisation (DRDO), vation by Optellios, the US-based
8000 MP generates full colour images quite recently, developed a new device manufacturer of fibre-optic sensing
in un-illuminated situations beyond to track secluded snipers behind win- and security systems, is their recently
the point where other cameras would dows and curtains. released FP1400 zone-based perim-
have switched to monochrome images. To safeguard VVIPs from such eter intrusion security system. It uses
And where others show no image at snipers, DRDO has developed a la- algorithm-based distributed sensing,
all, it still delivers detailed mono- ser device called the Optical Target coupled with frequency filtering, to re-
chrome images. Locater, which can identify and spot ject environmental sources of nuisance
The built-in intelligence eliminates potential assassins carrying sophisti- and false alarms. It provides superior
the probable disturbances that usually cated rifles, hiding behind windows of intrusion detection with support for
originate from fluctuating front or back high-rise buildings. A portable laser- software-configurable 8 to 28 zones,
light. The intelligent auto exposure based device for detection of optical and provides cut-immunity, which
(iAE) gives front- and back-light com- and electro-optical threats, it can aid means the systems remain operational
pensation, providing a perfect picture security firms providing VVIP secu- and will detect even if a cable is cut.
every time. It dynamically adjusts the rity to locate snipers and spies trying IoT, short for Internet of Things,
exposure of the camera to automati- to stalk, observe and eliminate their dubbed today as ‘Internet of Every-
cally adapt to changing light condi- high-value targets. The device has been thing’ is starting to get a stronger hold
tions and provides perfect exposure developed and successfully test evalu- over the technology landscape. It is
of objects of interest every time. Intel- ated for optical targets up to a range of predicted that by 2020 there will be at
ligent dynamic noise reduction (iDNR) 300 metres. least 20 billion connected devices all
saves bitrate at the source and only A laser beam is released from the over the world. With continued tech-
uses bandwidth when needed. This equipment that examines the particular nological advancements, every year
results in up to 50% less bitrate, which area, and the moment it hits any de- will continue to bring a bevy of new
significantly reduces storage costs and vice such as a telescope, binocular or innovations that are smarter, custom-
network strain without compromising the telescopic sight of a sniper rifle, isable and connected to the security
on video quality. the location of the sniper is identified. industry. 
With the ability to capture fast- DRDO’s Laser Science and Technology
moving objects, high resolution, wide Centre (LASTEC) Director Anil Kumar The author is a senior technical correspondent
dynamic range and superior light Maini was quoted saying, “The best at EFY

46 August 2014 | Electronics For You www.efymag.com


Technology Focus

En Route to Security 3.0


In an era riddled by desire, power and technology, threats So, although your data is secure, the
whole point of offloading work to a
have become immeasurable and unpredictable. As a result,
cloud server is lost in the bargain! On
security and privacy have also transitioned from being the other hand, if you let the server de-
straight-forward tasks to complex, unfathomable ones swept crypt the message by sharing the key,
by new and emerging technologies security and privacy are compromised.
IBM came out with a solution to this
problem, and was granted a patent on
it in December 2013. Their ‘fully homo-
morphic encryption’ offers a way for
servers (including cloud ones) to take en-
crypted data from a user, process it, and
send back an encrypted result–all with-
out decrypting the data first! In short,
they have solved a mathematical puzzle
that has daunted scientists for years–that
is, querying of encrypted data without
decryption. The first results related to
homomorphic encryption were revealed
by IBM researcher Craig Gentry in 2009.
Although a significant breakthrough, the
technique was complex and would take
too much time.
As one particular critic pointed
out at that time, “Performing a Google
search with encrypted keywords—a
The inventors with their terahertz scanner (Courtesy: Fraunhofer Institute) perfectly reasonably simple application
of this algorithm—would increase the
amount of computing time by about
can protect places, people, and now, a trillion.” However, the technique

F
Janani Gopalakrishnan Vikram
their devices and data too. Here, we gained new hope in 2013, when two
ear redefines security in look at a small sample of the security- more IBM researchers, Victor Shoup
every era. Huts began to related research and experimentation and Shai Halevi, took up Gentry’s
have doors when people happening across the world. To show original concept and implemented
began to worry about their how vast an area it is, we shall look it more practically. They released an
privacy; and forts began to at disparate examples that span from open source, GPL-licensed C++ library
have moats when kings started invad- data security to public security. to perform homomorphic encryption
ing. Banks began to have passwords, at a low level. They are working on
homes began to have locks, phones and Using the cloud without providing higher-level routines.
computers began to have pass-codes, compromising privacy Other researchers from reputed
and slowly security became a basic In most instances, there is a paradox in institutes like the University of Toronto
amenity, an all-pervading necessity. using cloud-based services and strong and Massachusetts Institute of Technol-
As in any field, technology rose to the encryption schemes. When you need to ogy are also working on similar tech-
occasion, and from homes to national perform some operation, say search, on niques, but are all faced with the chal-
borders, high tech began to be deployed a strongly encrypted database stored lenge of making these algorithms faster
at every turn. Still, security and privacy on the cloud, but the server cannot and more computationally practical.
continue to be serious concerns for eve- decrypt the data, it has no choice but
rybody, albeit of varying degrees. to return all the records to you, letting Non-invasive parcel scanner
As always, technologists continue your computer assume the burden of How cumbersome it is when the post
their quest for newer technologies that decrypting and searching the database. office or courier insists that you seal the

48 August 2014 | Electronics For You www.efymag.com


Technology Focus
packet in their presence after they check stranger uses the device,
it for explosives and drugs? The T- the system recognises
Cognition system is a terahertz scanner that the movements do
developed by researchers at the Fraun- not match the owner’s
hofer Institute for Physical Measure- normal tendencies, and
ment Techniques IPM in Kaiserslautern can be programmed to
in collaboration with Hübner GmbH & take further action such
Co. KG in Kassel, which helps scan the as locking the device or
content of packages or envelopes with- alerting somebody.
out having to open them. In specific, the Called LatentGesture,
system helps recognise parcels contain- the system was tested at
ing hazardous, flammable materials the lab using 20 users.
such as explosives and illicit drugs. As the users do various
The scientists chose to use waves LatentGesture profiles each user and stores their ‘touch
tasks like tap buttons,
in the terahertz range for scanning, be- signature’ (Courtesy: Georgia Institute of Technology) swipe sliders or check
cause this lies midway between micro- boxes, LatentGesture de-
wave and infrared in the electromag- problematic as the quality of thermal velops a profile of each person, what
netic spectrum, and thus combines the paper varied from country to country. they call a person’s ‘touch signature.’
advantages of both. These low-energy This new technology, on the other For every device, the system can store
frequency waves can easily penetrate hand, uses a specifically-tailored UV five touch signatures–the owner’s
paper, wood, lightweight fabrics, light to illuminate the thermal paper and and four authorised users’. Whenever
plastics and ceramics. The character- create faint images of fingerprints. This somebody uses the mobile device, it
istic spectra generated by them can be enables quick, non-invasive and specula- automatically identifies whether it is
analysed using intelligent software to tive examination of fingerprints. The fine the owner or one of the other author-
accurately detect the type of material images produced by the UV light can ised users, and allows all operations
they travel through. Also, since tera- then be enhanced and converted to digi- they are authorised to do. If a stranger
hertz waves are non-ionising, they are tal form using the earlier HPS system. uses the system, an alert is issued or the
safe to use without any special shields. device is locked. The system, tested on
Although very useful for mail scan- Knowing you intrinsically Android devices, was nearly 98 percent
ning, this nascent technology can also People you are close to do not need an accurate on a smartphone and 97 per-
be used for other security applications ID to recognise you! They know you by cent correct on tablets.
such as industrial security, airport se- who you are, what you do, and why
curity, and so on. you do things. Considering that the Funny looking blimps,
mobile phone has now become many serious about security
New light for scouting a man’s closest confidante, have you Early this year, the US Government an-
fingerprints ever wished your phone too could rec- nounced that it would be deploying two
When we say tech in security, it is not ognise you instinctively, without need- giant security blimps over Maryland
just about high-tech video surveillance ing a password? Perhaps they could, around October. The blimps would carry
and cloud-based analysis. Sometimes, in the future,
simple breakthroughs can be big, such thanks to a new
as this new UV light developed at security system
the University of Leicester to identify developed by re-
fingerprints on thermal paper used searchers at the
for printing receipts, ATM bills, etc—a Georgia Institute
key requirement for solving several of Technology.
financial crimes. The new
Historically, it has been a challenge system continu-
to visualise fingerprints on thermal pa- ously monitors
per, as the solvent used in the chemical how a user taps
process turns the whole paper black. and swipes a
A technology called Hot Print Sys- mobile device,
tem (HPS) developed some years ago and tries to un-
helped read fingerprints on thermal derstand the
paper by applying heat to the paper; patterns in these
however this too turned out to be movements. If a A bird’s eye view of the JLENS (Courtesy: Raytheon)

50 August 2014 | Electronics For You www.efymag.com


Technology Focus
out 24/7 domestic aerial surveillance from the team’s efforts to
and help enhance security manifold. reduce the bulky and expen-
Developed by security major Ray- sive resources required for
theon, the Joint Land Attack Cruise quantum cryptography, so
Missile Defense Elevated Netted Sensor that it can be implemented
System (JLENS) comprises two 243-foot by simply integrating an
long aerostats flying 10,000 feet above optical chip into a mobile
the ground. One of them has 360-degree handset.
surveillance capabilities that enable it This is basically a cli-
to see as far away as 547 km in any di- ent-server QKD scheme,
rection, while the other has a powerful wherein the cumbersome
integrated fire-control radar system. The equipment, such as the
two aerostats are connected to mobile laser and detectors, are
mooring stations on the ground using located at the server side
tethers that have high-speed fibre-optic and are accessible to a cli-
cables for sending data as well as trans- Apart from unique facial features, SafeRise also notes your gait,
ent over a communication
mitting power. The aerostats can also voice and other biometrics (Courtesy: FST Biometrics) network. The client only
communicate via radio links. requires an on-chip polari-
Of course, this announcement has recognition. Using a profile picture, it sation rotator, which may be integrated
triggered a lot of uproar about privacy tries to understand a person’s unique into a handheld device. While the
concerns, but the government is confi- features, such as say, the number of experiments seem successful, the team
dent that the two aerostats would work pixels between her eyes. Then, every is now working towards implementing
hand in hand to effectively spot and time that person approaches a pro- the client-server QKD system in a real
ward off threats. tected area, the SafeRise system tries communications network.
to compare all the special features it
Human-like, real-time has stored. If you watch the output More examples,
facial recognition of the security camera, the software all around us
A tool that excels in facial recognition puts a yellow box over anything that There are lot more interesting develop-
and biometric identification is perhaps registers as a face. If it recognises the ments in security across the world—
what we need to replace the security face, the box turns green, else it turns and most of them accurately reflect the
guard, but how efficient are today’s red and the door remains locked. As changing mindsets of people and the
facial recognition tools. It is said that the system ‘watches’ the person more, newer threats of networking, increased
Facebook’s facial recognition has near it assimilates more biometric details mobile usage, cloud computing and
human efficiency, but that is for static about her including her gait and voice. the Internet of things. For example,
images. For real security systems, we The more it learns about the person, the a decade ago people would not have
need real-time facial recognition. Many faster it identifies the person. SafeRise is thought of do-it-yourself customised
companies and research firms are incorporated into FST products like the home security using sensor-software
working on such technologies today, Digital Doorman. kits but today people need it to protect
and one such example is FST Biomet- their privacy and changing lifestyles.
rics (erstwhile FST21), founded by Quantum leap in mobile Likewise, nobody would have even
Major General Aharon Zeevi Farkash, phone security imagined that it would become neces-
the former head of the Israeli Military Considering the amount of transactions sary to protect trivial devices like, say,
Intelligence Directorate. people are conducting using mobile the printer. But, with almost all devices
One of their base technologies for In devices, researchers have now started getting connected to the corporate or
Motion Identification (IMID) is SafeR- considering mobile security on the same home network, every device becomes
ise, which uses a combination of real- lines as banking security! A team at the a point of vulnerability.
time facial recognition and biometric University of Bristol, in collaboration The threats faced by people today
technology. When somebody walks up with Nokia, recently demonstrated how are much more—thanks to the technol-
to a secured area, the system is capable quantum cryptography using Quantum ogies that seemingly promise to make
of immediately recognising whether she Key Distribution (QKD), a bulky and life easier for them, and that means
is an authorised person or an intruder, expensive technique currently used for more sleepless nights for technologists
without even requiring the person to securing fixed physical locations like paving the way for security X.0! 
stop near a camera or provide finger- server rooms in banks, could be used to
prints, iris prints, or any authentication. implement an ultra-high security scheme The author is a technically-qualified freelance
Mostly, the system relies on facial for mobile devices. New hope comes writer, editor and hands-on mom based in Chennai

52 August 2014 | Electronics For You www.efymag.com


Technology Focus

RF Surveillance: A Case of
Homeland and Border Security
Traditional techniques of monitoring individual activities and actions either by manual
inspection or by CCTV cameras and the advancement in electronics and radio-frequency-
based analysis has opened new avenues for threat detection

help to locate and isolate the suspect ing frequencies. This would stop all

A
Srisailam Todeti
without much manual intervention. forms of communications, including
lthough security threat This technique of detecting and lo- security agencies’, and is therefore
can emerge from many cating the illegal and suspicious RF counter-productive. That is why RF
sources, the one which source is called RF surveillance. Here surveillance is required and is gain-
is really brutal and cata- we discuss the RF surveillance tech- ing popularity, as it enhances security
strophic is terrorism. nique which can be used both in pre- perimeter beyond just physical and
Terrorism has far reaching conse- ventive and tactical ways to effectively visual security.
quences like loss of human life and counter terrorist threats.
property, and change in behavior How it works
pattern of individuals, many of them The need Radio frequency (RF) surveillance
being irreversible. It is not easy to determine illegal ac- systems must be capable of measuring
Spread of knowledge and educa- tivities in communication and mobile unknown or unfriendly transmissions
tion, coupled with strict vigilance, services due to their use en-mass. and possibly extract the target infor-
can help contain terrorism and other However, communications between mation content. Direction finding (DF)
security threats. However, for robust- terrorists and anti-social elements can and geo-location are usually part of
ness in security, electronic threat detec- be stopped either by shutting down the RF surveillance signal recovery; also
tion mechanisms are recommended. network or by jamming all the operat- knowledge of the emitter location is of-
The main advantage is the fered as part of such systems.
passive monitoring by these The basic block diagram of a
electronic solutions, which generalised RF surveillance
does not impact routine life system is as shown in Fig. 1.
of any individual and still The three steps that de-
ensures safety and security. scribe it are as below:
Generally, terrorist attacks are Search. Performs the
made in densely-populated or high-speed signal search
sensitive or tourist areas like Fig. 1: Basic block diagram of an RF surveillance system operation in the selected fre-
bus stations, airports, railway quency band and identifies
stations, hotels, places of active signals.
worship and other crowded Classify. Performs signal
places. classification operation to
The frequency spectrum is sort out the signals of inter-
allotted in India by WPC. This est based on the selected
means any frequencies used threshold level, alarm condi-
by anyone who is not legally tions and automatic modula-
allotted these raise suspicion, tion recognition algorithm.
and also any illegal activities Monitor. On the signal
carried out in the licensed of interest, performs the
band are suspect. If the illegal demodulation and identifies
and suspicious frequency and the intelligence available in
its location are determined by Fig. 2: Multiple RF sensors to determine emitting devices in Hotel Taj Mahal it. If required, records the
any monitoring system, it can building signals and the intelligence

54 August 2014 | Electronics For You www.efymag.com


Technology Focus
for further analysis. Once intercepted pitals, transportation security depart- Using cross-correlation technique the
RF signal is monitored and recorded, ment, including aviation and maritime exact RF origination or emitting source,
the system investigates RF spectrum transportation, can use these systems. and hence terrorists’ locations, could
to identify the target message content. be detected and they could be isolated
Overview of use case and neutralised.
Who needs it Let us define various use cases for RF Though this technique is reactive
Surveillance of wireless signals is surveillance systems in different oper- and tactical, it can be really quick to
generally required by spectrum regula- ating environments. Three use cases spot the emitter and corrective actions
tors, public safety agencies, border and are stated below: can be taken to avoid larger damage. A
coastal security, and military intelli- 1. Tactical use case better way, however, is to proactively
gence. In the government and military 2. Preventive use case monitor indoor areas of the sensitive
areas, these transmissions are often 3. Costal surveillance use case buildings.
characterised as signals intelligence Note that these are just indicative Fig. 3 shows a large hotel building
(SIGINT). These systems are useful to use patterns, and the RF surveillance with multiple floors and rooms. Each
intercept and locate the different wire- system is not limited to these applica- RF sensor scans its designated area
less transmitters such as global mobile tions. and sends information to a common
personal communications by satellite control location where all the RF-
(GMPCS), cellular handsets and VHF/ Tactical use case for emitting sources (legal or illegal) in the
UHF frequency range walkie-talkies. critical infrastructure hotel can be identified. Since sensors
Thus, an RF surveillance system plays
protection can time-synchronise their sweeps,
a vital role and ensures success in se- RF sensors can be installed in the the energy detection too gets synchro-
curity mission. suspected area around the building nised. Power-level comparisons can
Various intelligence and security as shown in Fig. 2, or RF sensors can then determine whether a transmitter
department personnel like Homeland be mounted in the sensitive buildings is inside vs outside, and if inside, in
security department, Border and as shown in Fig. 3. All RF sensors can which room.
Coastal Surveillance department, be connected via LAN backhaul either This approach works well even if
critical infrastructure and perimeter with a wired or wireless system. The attenuation through the walls, ceilings
protection forces, signal intelligence sensors can then be time-synchronised and floors of buildings is substantial.
groups of Army, Navy and Air Force, and, with its core detection algorithm, The series of actions performed by this
technical and aviation research organi- the software can detect illegal or threat system in current example is summa-
sations, defence agencies, government signal. The system is very easy to in- rised in Fig. 4.
end-users, paramilitary forces, regula- stall within a few minutes.
tory agencies, commercial spectrum This method is best explained with Preventive use case for
monitoring agencies, railways, hos- the example of Hotel Taj Mahal in critical infrastructure
Mumbai where
protection
terrorists attacked. In preventive application of an in-
Assuming that the frastructure protection, a distributed
terrorists were network of RF surveillance systems
still using RF com- can be used to perform the operation in
munication for remote mode, probably from network
their coordination, operations centre (NOC). The surveil-
it was possible to lance systems can be installed at various
detect their sig- locations by connecting them on back-
nals and their pre- haul connectivity such as the Internet,
cise origination, if 3G or a captive LAN network. These
multiple RF sen- systems stay synchronised in time with
sors (Fig. 2) were GPS and therefore have the capability to
put in all corners geo-map suspicious emitters.
Fig. 3: Use case of proactive indoor monitoring of sensitive areas of hotel building. Let us take the example of Mumbai

Fig. 4: Activity sequence for commission of RF surveillance system

www.efymag.com Electronics For You | August 2014 55


Technology Focus
remains the same as explained in Fig.
4. For better insight of the entire city,
drive test with data recording facility
can supplement areas in which the
RF sensors cannot be easily deployed.
The drive data and the stationary sen-
sor data can be correlated at NOC and
emitters can be determined.

Coastal/border
surveillance
The third and final example is of very
large- scale monitoring, which can be
coastal or border surveillance systems.
The system works on the same philoso-
Fig. 5: Preventive technique for emitter detection using RF surveillance phy as described in previous section,
with a difference that the RF sensors
typical deploy- are located along the coast or border,
ment and con- and that the granularity of deployment
trol scheme for is not as dense as in previous case. The
Mumbai city deployment locations can be hill-top or
is shown in resorts where uninterrupted data con-
Fig. 5, where nectivity to NOC is available.
RF sensors are These systems also work 24×7 for
located at stra- continuous signal monitoring and
tegic locations analysis. The operational activities of
and their time- this coastal/border application are
stamped data the same as in Fig. 5, where the sur-
is pulled at veillance systems along the coastal or
NOC for net- border area, with suitable backhaul
work view of connectivity, can cover the entire sensi-
RF operations tive border area. Fig. 6 is an indicative
in the city. This example of such deployment. 
Fig. 6: Distributed network of RF sensors for coastal surveillance is a true proac-
tive monitor- The author is application engineer in Electronic
city, which has a large number of com- ing because one would know of any and Measurement group of Agilent Technologies
mercial buildings and other important incremental RF emission as soon as it at Hyderabad. Along with Master of Engineering
degree and specialisation in systems and signal
establishments and tourist centres happens. processing, he has over 12-year experience in
like BSE building, Hotel Taj Mahal The process of installation and RF surveillance and communication, EW systems
and Chhatrapati Shivaji Terminus. A commission of sensor-based systems development, integration and testing

Read more TOPSECURITY STORIES


• CCTV camera market
etric
is expected to double by
dev ices
2015 ELECTRONICS
biom

stories on
• The latest in to a bright future
turers can look forward
• CCTV Camera manufac a CCTV into a proactive tool
s Sys tem s Turn ing
• Video Analytic gies
lving with new technolo
• Security cameras evo
INDUSTRY IS AT A
Security in
cam eras
• The latest in dome t security cameras
-proof and vandal-resistan
• The latest in weather

www.electronicsb2b.com
Log on to www.electronicsb2b.com and be in touch with the Electronics B2B Fraternity 24x7

56 August 2014 | Electronics For You www.efymag.com


Technology Focus

Security Testing Tools: Wapiti,


OWASP ZAP and Netsparker—
A Comparison
With the vast use of the Internet, websites have become complex and impose increasing
challenge in securing them for data integrity, confidentiality, authentication, availability,
authorisation, access control, etc. Website security is especially important where critical
information is stored in web applications and the transactions need to be safe, as in the
case of defence and banking applications

control, audit, privacy protection, se- terms of architecture, software require-

B
SHWETA TYAGI
curity management, etc. ment and generated results for differ-
efore digging into the Security vulnerability testing is ent parameters.
details of web application to discover security vulnerabilities as
security testing, let us first an attacker. Vulnerability refers to the Common web application
take a brief overview of flaws in system design, implementa- vulnerabilities
application security test- tion, operation or management. It may The common vulnerabilities of web
ing. Security testing can be divided be used to attack, resulting in a state of applications are cross-site scripting,
into security functional testing and insecurity. Commonly found vulner- SQL injection, broken authentication,
security vulnerability testing. abilities in web applications include cross-site request forgery and session
cross-site scripting, injection, management. These vulnerabilities ap-
security misconfiguration, pear significantly in the Web Hacking
NetiQ
Nikto
Scanner SPI session management and Incident Database (WHID).
Security Dynamics
Analyser Webinspect more. SQL injection. It is a code injection
Vulnerabilities of web technique, used to attack data-driven
IBM
SAINT
AppScan applications may be accessed applications, in which malicious SQL
by using penetration testing. statements are inserted into an entry
Acunetix
Source code analysis sys- field for execution. The best way of
Nessus Security
Security Testing Web
Vulnerability
tems aim to help developers finding whether an application is vul-
Scanner Tools
Scanner locate vulnerabilities in the nerable to attack is to ensure that all
underlying code of software use of interpreters separates untrusted
Tenable
STAT
Scanner Security programs and applications data from query. A rare and best way
Center
before they are put into pro- of attack is to inject malicious code into
Qualys
Guard Qualys Free SARA duction. Penetration testing strings as metadata. Consequently,
Security
Scans is the practice of testing a when the stored string is concatenated
computer system, network or into a dynamic SQL query, the mali-
Fig. 1: Security testing tools web application to find vul- cious code is executed. This can allow
nerabilities that an attacker the tester to read and modify sensitive
Security functional testing ensures could exploit. data contained in a database and take
that the software security functions are Several researches are available full control of the database server by
implemented correctly and are consist- which have compared some secu- exploiting vulnerabilities. Two attack
ent with security requirements based rity testing tools from the viewpoint of scenarios are:
on their specifications. Software secu- their features, cost, services, functions Scenario #1. The application uses
rity requirements mainly include data and so on. In this article, we compare untrusted data in the following vulner-
confidentiality, integrity, availability, three tools—Wapiti, OWASP ZAP and able query:
authentication, authorisation, access Netsparker Community Edition in String query = “SELECT * FROM

58 August 2014 | Electronics For You www.efymag.com


Technology Focus
the application, to test the behaviour of
application under random data. Fuzz-
ing is used to find security loopholes
SQL Injection
Cross side scripting
in operating system, software, web ap-
Buffer Overflows
Crypto Attacks
Client Server Applications plication and coding errors.
Backdoors-Malicious Code
Session Hijacking
Cross-site request forgery. Also
HTTP Response Splitting known as a one-click attack or session
riding, and abbreviated as CSRF or
SOA Interfaces
Attacker XSRF, it is a type of malicious exploit
of a website whereby unauthorised
Web Server Application Server commands are transmitted from a user
Firewall
Web Browser
Databases
that the website trusts.
Insecure direct object reference. It
Legitimate User
occurs when an application exposes
an internal implementation object to
Legacy Systems the user. Some examples of internal
Fig. 2: Security testing implementation objects are database
records, URLs or files. An attacker can
customers WHERE custNAME=’” + attacker may have the same privilege modify the internal implementation
request.getParameter(“name”) + “’”; level of the system as that of a legal object in an attempt to abuse the access
Scenario #2: Vulnerable query in authorised user. An attack scenario is controls on this object.
Hibernate Query Language given below as an example:
Query HQLQuery = session. Scenario #1: Ticket reservations ap- Comparison of security
createQuery(“FROM customer plication supports URL rewriting: testing tools
WHERE custNAME=’“ + request. http://Testexample.com/sale/ite In order to compare the representative
getParameter(“name”) + “’”); msjsessionid=2P0OC2JSNDLPSKHCJ testing tools, we consider the sample of
In both scenarios, the attacker UN2JV?destn =Delhi web application Jammu and Kashmir
modifies the ‘name’ parameter value An authenticated user of the site Employment System. The system aims
to send: ‘ or ‘1’=’1. mails the above link to his friends to immediately provide the facility
http://testexample.com/app/ without knowing that he is also giving for citizens to submit online form for
customerView?name=’ or ‘1’=’1 away his session ID. When his friends the services identified by the state of
This changes the meaning of que- use this link, they will use his session Jammu & Kashmir. Subsequently, the
ries to return all the records from the and credit card information. citizen must be able to check the status
customer table. More dangerous at- Cross site scripting. It is a web of his/her application online. These
tacks could invoke stored procedures vulnerability in which malicious submissions and status tracking can
or modify data. script is injected into the system in be done through the Common Service
Broken authentication and ses- the form of input. Three major types Centres (CSCs) or through the J&K
sion management. It includes all form of cross-site scripting exist. The first State Portal directly.
of handling user authentication and one is Reflected XSS, in which attacker Jammu and Kashmir Employment
management of active sessions. A site injects browser-executable code within System will help the government of
may be vulnerable if: a single HTTP response. It is non- Jammu & Kashmir in creating an inte-
1. User authentication credentials persistent. Second type is Stored XSS, grated information infrastructure that
aren’t protected when stored using which occurs when some malicious will expand, integrate and enhance the
hashing or encryption user-submitted data is stored in a data- utility and reach of the services provid-
2. Session IDs are exposed in the base to be used in the creation of pages ed by the government by utilising the
URL that will be served to other users later. network of the CSCs. The state-portal
3. Session IDs aren’t rotated after Thus, visitors of the web page fall vic- is envisioned as an informative, inter-
successful login and passwords tim to this attack. The third, Local XSS, active, integrated and trusted service
4. Session IDs and other credentials targets vulnerabilities that occur in the delivery channel for the government to
are sent over unencrypted connections source code itself. It is a type of XSS citizens (G2C) and government to busi-
To impersonate a user, an attacker vulnerability which does not originate ness (G2B) services of the state and the
use leaks or flaws, such as exposed from the local software of the user. government’s constituent departments.
session IDs, accounts and passwords, Fuzzing testing. Fuzzing is a type of The SSDG acts as hub (standards-based
in the authentication or session man- negative testing that involves injecting messaging switch) for all the interac-
agement. When attack is successful, an unexpected, random data as an input to tions and seamless interoperability

60 August 2014 | Electronics For You www.efymag.com


Technology Focus
across service seekers (the citizens and
businesses) and various service provid-
ers (government departments) and even Vulnerabilities report—Wapiti
among government departments. Summary
To test the representative tools, we 5

configured each tool to run the test. 4


3
The configuration included installa-
2
tion, setting up test parameters, test
1
data, result analysis, etc.
0
We ran the test on the machines. 1 2 3 4 5 6 7 8

Configuration for the machine was SQL Blind SQL File Cross Site CRLF (5) Commands Resource Htaccess Backup Potentially
Intel core i3-3110M 2.40GHz proces- Injection
(1)
Injection (2) Handling Scripting (4)
(3)
execution (6) consumption
(7)
Bypass (8) file (9) dangerous file
(10)
sor with 2GB RAM, running Microsoft High 1 1 1 0 0 1 0 0 0 0
Windows. The tests were conducted Medium 0 0 0 0 0 0 0 0 0 0
two times a day to minimise the ef-
Low 0 0 0 0 0 0 0 0 0 0
fect of the Internet connection on test
results and to obtain accurate meas- Fig. 3: Wapiti test results
urements.
who want to scan their web applica- should be handled properly to protect
Overview of tools tions instantly and find the vulnerabili- an application from SQL injection.
Wapiti. Wapiti is a web application ties. Netsparker Community Edition File handling (1): The attack is
vulnerability scanner that was created scans for SQL injection, XSS, Boolean known as path traversal or directory
in 2006 by Nicolas Surribus. It does SQL injection, backup files and static traversal. Its aim is to access files which
not scan the source code of the appli- tests. It scans all types of web applica- are stored outside the web root folder.
cation but scans the web pages of the tions without limiting itself to technol- The attacker tries to explore the direc-
launched web application. Wapiti acts ogy or platform they are built on. It tories stored in web server.
like a fuzzer and injects payloads to supports Javascripts/AJAX, can show Command execution (1): This attack
see if a script is vulnerable. Wapiti can impact of vulnerabilities or remedy for consists of executing system com-
detect lots of vulnerabilities, such as that vulnerability. mands on the server. The attacker tries
file-handling errors, database injection, to inject this command in the request
cross-site scripting, LDAP injection Tools results and analysis parameter.
and CRLF injection. Wapiti is easy to The web application was tested using
use, open source and the user does not the three tools OWASP ZAP, Wapiti Test results with
need security knowledge. But it is not and Netsparker Community Edition. OWASP ZAP
able to find all the vulnerabilities. The test results obtained using these Using the active scanning feature of
OWASP ZAP. OWASP ZAP is a tools were: OWASP ZAP, 17 potential vulnerabili-
penetration-testing tool which comes Testing results with Wapiti. Using ties were found, as mentioned below
with plenty of features. Its main fea- Wapiti, the following four vulnerabili- (the number following the vulnerabil-
tures is active scanning which is used ties were discovered in the Jammu & ity refers to the number of occurrence
to find certain kind of vulnerabilities, Kashmir application (the number in of the vulnerability):
including XSS and others, except some brackets refers to the number of occur- Cross site request forgery(2). Also
logical vulnerabilities that can never be rence of the vulnerability): known as one-click attack or session
found by any automated security test- SQL injection (1): SQL injection is a riding, and abbreviated as CSRF or
ing tool. Another interesting feature of technique that exploits a vulnerability XSRF, it is a type of malicious exploit
ZAP is fuzzing. ZAP provides a list of occurring in the database of an applica- of a website whereby unauthorised
fuzzers with the help of which we can tion. It is a code injection that can allow commands are transmitted from a user
fuzz any part of the application. This the tester to read sensitive information that the website trusts.
tool is open source, easy to use, well from database and to modify it. SQL Cookie set without HttpOnly flag
organised and up-to-date. High false Injection occurs when input contains (1). If a cookie has been set without the
positive factors and zero support for escaped characters, or user input is not HttpOnly flag, it means the cookie can
multiple scanning profiles are its main strongly typed. be accessed by JavaScript. If a mali-
disadvantages. Blind SQL injection (1): Blind injec- cious script can be run on this page
Netsparker Community Edition. tion occurs when SQL injection is al- then the cookie will be accessible and
Netsparker is a free web application se- ready present in the application but its can be transmitted to another site. If
curity scanner. It helps the developers result is not visible. Escaped characters this is a session cookie then session

www.efymag.com Electronics For You | August 2014 61


Technology Focus
hijacking may be possible. Testing results is due to server-side error. Reasons
X-Content Type Options header with Netsparker may vary.
missing (7). The script and styleSheet Using the scanner feature of Netspark- Version disclosure. This informa-
elements will reject responses with in- er Community Edition, we discovered tion can help an attacker gain a greater
correct MIME types if the server sends five potential vulnerabilities in the understanding of the systems in use
the response header ‘X-Content-Type- example site: and potentially develop further attacks
Options: nosniff’. This is a security Password transmitted over HTTP. targeted at the specific version of ap-
feature which prevents MIME-type When a password is transmitted over plication.
confusion based attacks. HTTP, it is vulnerable in many ways. Our study shows that Wapiti works
X-Frame-Options header not set As the password is transmitted over like a fuzzer. It detects database injec-
(7). In this case, X-Frame-Options HTTP, network analyser and packet tion, cross-site scripting, file handling,
header is not included in the HTTP sniffers can easily monitor the traffic etc. The web scanning, fuzzing, crawl-
response to protect against ClickJack- and intercept password. HTTP is not ing, report generation, etc features of
ing attacks. The X-Frame-Options considered to be a secure method of OWASP ZAP are very useful for web
HTTP response header can be used user authentication as stated by HTTP application testing. Its Web Spider func-
to indicate whether or not a browser specification. tion automatically discovers the hidden
should be allowed to render a page in a Cookie not marked as HTTPOnly. links. It allows the tester to understand
<frame> or <iframe>. Sites can use this If a cookie, which is not marked the structure of the web application.
to avoid clickJacking attacks by ensur- HTTPOnly, sent by the application, The active scanning feature of OWASP
ing that their content is not embedded is manipulated by the client side ZAP reports some main vulnerabilities,
into other sites. code (JavaScript, Java, etc), it could such as directory browsing, external
leave the site to redirects, session ID in URL rewrite
XSS vulnerabili- and SQL injection. From all the features
ties. HTTPOnly that OWASP ZAP offered, fuzzer is
cookies cannot the best due to lots of fuzzing plugins
be read by cli- that can be used. Also, the process of
ent-side script, fuzzing is pretty optimised and fast.
so marking a The thing that is weird about OWASP
cookie as HTT- ZAP is that, when we scanned web ap-
POnly can pro- plication twice, we got different results.
vide additional Netsparker community edition offers
layer of protec- nice grouping of results and great detail
tion against XSS per vulnerability.
attacks. Our comparison shows that differ-
Internal ent tools show different results for the
server error. The same web application. Wapiti found
server responded SQL injection and Blind SQL injection
with an HTTP in the application. Several studies show
Fig. 4: OWASP ZAP test results status 500. This that Wapiti has highest percentage of
SQL injection detections. Netsparker
does not have Blind SQL Injection
module, but is prone to less false posi-
tive factors as compared to other tools.
OWASP ZAP found cross-site request
forgery vulnerability in the web ap-
plication. OWASP ZAP is prone to high
false positive factors as compared to
the other tools. It reported SQLi vulner-
ability as cross-site scripting. So we find
that no tool is perfect but each can help
to find some basic vulnerabilities. 

The author is working as a project engineer at


CDAC, Mumbai in automation testing. Her research
interests are in software engineering, particularly in
Fig. 5: Netsparker Community Edition test results software testing and reliability, and software metrics

62 August 2014 | Electronics For You www.efymag.com


embedded design

Wireless Charging is the Future


Wireless charging is no more inferior to wired charging. Better standards, integration
methods and components have evolved over the past few years to make wireless charging
a better technology. And it need not be confined to charging cell phones. Find out how

Sneha Ambastha tion to medium power to deliver up pad, maximum amount of power gets
to 120 watts. transferred to the device to charge it

T
he multimedia-rich portable Chips like Broadcom’s BCM59350 easily and fast.
electronic devices available let gadgets use any wireless charging The chargers based on A4WP
now end up consuming a lot of standard. What’s more, it is not stran- standard transfer power wirelessly
energy just to keep the device’s graph- gled by the previous 5W limit and can at a frequency of 6.78 MHz, which
ics processing unit juiced up. Let us go up to 50% higher levels without is internationally available for such
take a cell phone for instance. The tra- breaking sweat. This results in a charg- applications. The frequency used for
ditional approach is to look for a wall ing speed that can finally compete control and management is within
socket and push in the wired charger’s the 2.4GHz band, which is ideal for
plug to charge the battery. use with smartphones and with other
Though a cell phone can also be electronics devices globally.
charged wirelessly, most people Itay Sherman, CTO, Power
are wary of the time it takes to Matter Alliance says, “Al-
charge the phone wirelessly. though both inductive and
No one wants to wait for resonant charging are
hours to charge a phone’s based on the same prin-
battery wirelessly, espe- ciple, the main differ-
cially when you need to ence between the two
use the device in next is the coupling factor.
15-20 minutes. But does It defines how the two
wireless charging still take coils will be aligned to
a long time to power up a transfer maximum flux.
device? When measured on a scale
Although called wireless, wire- 0 means less coupling factor
less charging is not totally without with what your travel charger gives and 1.0 means high coupling factor.
wires. The primary coil in the charger you through its wire. Modern wireless Devices based on inductive charging
needs current from AC mains to pro- charging allows transfer of upwards technology have a coupling factor of
duce magnetic flux, which produces of 1A current. 0.3 to 0.8 whereas devices based on
current in the charger’s secondary coil resonance charging can also have a
by induction for charging the device. Resonance charging coupling factor below 0.3.” 
So the primary coil is plugged into an The new wireless charging standard
AC socket using wires, though called A4WP (Alliance for Wireless Power) Charger-receiver alignment
wireless. Wireless charging, when is changing the concept of inductive Quick and proficient charging is
started, was based on Qi inductive charging from magnetic induction to possible only when the primary coil
power standard that was produced in resonance. Magnetic induction requires (transmitter) identifies the secondary
2008 by WPC (Wireless Power Con- the two coils to be placed very closely, (receiver). If the transmitter works ef-
sortium). whereas with this technique a large area ficiently but the receiver does not, the
The low-power Qi specification is covered so the device’s position is not wireless charger loses its significance.
limits the draw of power to just 0W to very critical. In fact, multiple devices Texas Instruments has recently
5W, which limits the current available can be charged wirelessly with this come up with two 5W receivers
to the device for charging. But newer technique by placing them all within (bq51020 and bq51021) focussed
wireless chargers available in the mar- the wide resonant field. And charging around the Qi 1.1 standard. They offer
ket are much better and can transmit a is not affected by the position of the a programmable yield voltage of about
higher amount of current. A few years device being charged. No matter how 8V, reducing the power loss and the
ago, Qi began to extend its specifica- you position the device on the charging rise in temperature by 35% compared

64 August 2014 | Electronics For You www.efymag.com


embedded design
to other charging solutions. The I²C in-
Table I
terface in bq51201 enables designers to
implement the pad detection feature,
Technical Analysis of Standards
EPC PMA A4WP
an easy way to align receiver with the
charger and the foreign object detec- Freq 100-205 kHz 250-400 kHz 6.78 MHZ
tion to allow faster and efficient charg- Range of coupling K-0.4 to 0.7 K-0.6-0.8 K-0.1 to 0.5
ing of all the Qi-compliant gadgets. Q of Coils 6-10 6-10 40-100

Lesser components Communication In Band (detailed) In Band (simple) Out of Band-BLE


Alignment Magnet on TX (retired)/ Magnet on TX and RX No alignment needed
Texas Instruments also came up with Multi Coil
bq500412 that allows designers to de-
Coil size/cost Med/Med Small/high Small/small
velop charging stations with half the
Thickness 0.3-1.0 mm 0.8-1.3 mm 0.2-0.5 mm (Est)
number of components used in other
charging solutions. This transmitter, Semiconductors RX <20V <20V 40V-60V
featured on foreign object detection Architecture of RX Rect + Reg + internal Rect + Reg + internal Rect + Buck _ BLE
though created for 12V charging pad, COMM COMM
can also be used with a boost converter Heating of metal Med (FOD implemented) Med (will need FOD in Low
to create a 5V USB charging pad with future)
three coils to limit power loss. Form factor flexibility Med Low Med-High
PowerbyProxi brings a fully inte- Efficiency 70%+ 70%+ ~50%
grated receiver circuit that fits easily Courtsey: Texas Instruments
into a smartphone to charge its battery
wirelessly. You can place at least three
Table II
devices on its pad for simultaneous
charging. It charges a device at the
Market Analysis of Standards
speed of a wired charger without over- WPC PMA A4WP
heating its components. Member companies 154 + members 86 + members 55 + members
Active consortium Yes Yes, formal technical Yes
Comforting power
Specification published Yes WPC 1.1, public Yes PMA 1.1, members only Yes V1.0, members only
Charging has moved on from what
Approved Tx types 20 1 N/A (3 in development)
has hitherto been a utility to one
Test houses established 9 None None
that comes with an aura of comfort.
Though the modules integrated in fur- Certified products 231 None None
niture are based on Qi technology they IC Solution available Yes (~5 Suppliers) None public None public
can also charge the devices that are not Magnetics Solution avail- Yes Yes, limited No
based on Qi technology. To accomplish able/understood
this they use an adaptor with the mod- Regulatory approvels Yes Yes No
ule. C+P Furniture Systems is work- Infrastructure play Japan, Europe US, Rurope None
ing to bring the whole new Cegano
Active carriers Verizon and Docomo ATT Tmobile
smart table and Prefino locker system
Current shipment vol 15M+ <1M N/A
with the wireless charging facility for
smartphones. Comments Well established, Dominant US player, Strong push by SS and
products in market, Strong ATT support, early Qcom, Active develop-
Leggett & Platt have come up with wide design flex- stage ment ongoing
Helios, an inductive charging system ibility
that is available in puck shapes or Courtsey: Texas Instruments
low-profile designs. It is an intelligent
system that communicates with the de- lessly, Helios has to be plugged into a existing technology with surroundings.
vice to be charged. That is, the primary socket to power the primary coil. Either way, it will soon be ready to jolt
coil communicates with the secondary “Wireless charging furniture tables, the interior decoration and furniture
to identify its power requirements chairs and desks—is not very far. In market,” explains T. Anand, Knewron.
and charges it accordingly. Once He- fact, many of us (including Knewron)
lios identifies that the device is fully are already in design phase of these New standards
charged, it cuts off charging and turns things. However, these are not out- Alliance for Wireless Power (A4WP) is
on the LED indicating full charge. of-the box solutions either; just being a wireless charging standard that came
Although the device is charged wire- manifestation and augmentation of up recently. Although the products

66 August 2014 | Electronics For You www.efymag.com


embedded design

Table III
Wireless Charging Solutions for Design Engineers
Manufacturer Solution Feature Advantages
Freescale MWCT1000CFM 5W single-coil transmitter • Robust foreign object detec-
tion algorithm to meet latest
safety requirements
• Transfer efficiency exceed-
ing 75%
NXP NXQ1TXA5 Qi low-power A5/A11 • Extremely small PCB size
transmitter according to • Safe operation with FOD and
specification version 1.1.2 optional NTC
Active-Semi EVK-PAC5220WP- Single-IC based wireless • Built-in surge protection
Qi-xxA11-V1 power transmitter • Scalable MCU based solu-
tion to enable products with
multi-coils, multi-modes, and
medium or higher power levels
up to 150W
NXP NXQ1TXA6 12V multi-coil wireless • Low standby power and NFC-
charging transmitter enabled zero-power standby
• Optional smart NFC features
like Bluetooth pairing
Active-Semi PAC5220WP Power application control- • 28 GPIOs for MCUs
ler • Interface type: SPI, I2C,
UART, SWD
PowerbyProxi Proxi-Ring 480W A wireless slip ring • Transfer power through any
non-metallic material including
liquids, solids and gases
• Dual channels provide 480W
with no redundancy or 240W
with dual redundancy
PowerbyProxi Proxi-Point A wireless connector • Reduces high-installation and
on-going maintenance costs
• Simplifies implementation/
installation processes
Texas Instruments bq51020EVM-520 Wireless power receiver • Inductor-less receiver for
evaluation module lowest height profile solution
• Adjustable output voltage
(4.5V to 8V) for coil and ther-
mal optimisation
Texas Instruments BQ51221 Dual-mode, 5W (WPC and • Fully synchronous rectifier
PMA) single-chip wireless with 96% efficiency
power receiver • 79% system efficiency at 5W
STMicroelectronics STEVAL-IDS002V1 Autonomous wireless mul- • User-friendly software GUI for
ti-sensor node powered by system configuration
PV cells • PV module soldered on top
Broadcom BCM59350 A wireless charging PMU • Up to 88% AC-to-DC efficiency
• Ensures acceptable NFC
performance

based on Qi and Power Matter Alli- Anand says, “While there are
ance (PMA) standards are already in adequate tools and resources avail-
market, the products based on A4WP able from various chip manufacturers
are yet to be seen. for designing the wireless charging
Verizon and DOCOMO are using devices, on-going battle and unstable
Qi standard, AT&T has chosen PMA standards are restrictive. It is difficult
standard and T-Mobile wants to use for the designers to neglect one or two
A4WP. Power Matters brings various particular standards that in turn would
PMA-based wireless charging options add to the cost of product and design
like Power snap kit, travel mat, power activity. Having said that, it is still less
mat and access kit for high-end mobile of a design problem and more of an
devices.  innovative utilisation problem for the

www.efymag.com Electronics For You | August 2014 67


embedded design
majority of us.”
On the contrary, Srivasta Raghunath,
Strike 100 in a few minutes
technical lead - Analog Systems, Texas The development of high-rated, electro-chemical batteries is making wireless charging more
practical and more useful. Its high-rate capability charges the battery completely within few
Instruments restricts himself to the new
minutes. Stu says, “In fact, even with today’s well-known battery chemistries, you can ‘tune’
standards. He says, “Since A4WP is still the design of the cell to give up a little in energy density in order to support a high charge rate.”
evolving, there has been no standardisa-
tion and no particular tools developed Two-in-one
MOCREO shifts the electrical charging contacts from the socket to the back of the device. It is
yet. This is still in R&D stages and will
a portable charging pad that weighs only 240 grams and plays a double role in the family of
be evolving in the coming years.” wireless chargers. It has two USB ports that facilitate wired charging of two devices even when
it is wirelessly charging the third one. It also acts as a portable power bank and stores about
Future: Industrial use 10000mAh power that can be used to power the devices using the USB plug-in port.
Although the main focus of wireless
charging has been small portable de-
vices, it cannot be limited to these de-
Driving wireless charging technology forward
vices alone. The main aim of this type A4wp is accepting the inductive charging solution pioneered by PMA, leaving behind no
of charging technology is to transfer working groups to develop another inductive charging standard. While on the other hand,
maximum power to the receiver in a PMA is accepting the resonant charging solution pioneered by A4WP (called Rezence) as
the industry standard for resonant charging. This way even A4WP is no longer going to have
wire-free environment.
working groups that would develop another resonant charging solution. Itay says, ”The whole
All electric transport buses that point of this is to harmonise the various recognised industry standards that enable consumers
have been introduced on a trial basis, to power up wirelessly.” They have developed a common certification to accelerate the
on the streets of Milton in UK for five use of wireless charging in more devices and have collaborated on their API (application
years, use the wireless charging tech- programming interface) for network service management. Qualcomm joined this group two
nology on a larger scale. Although the weeks after joining WPC, leading the roles of three different bodies for wireless charging.
buses are completely charged at night, A technology can never improve with just one merger or collaboration. There has to be
continuous improvements along with partnerships and investments to make the technology
they need top up charges after every
widely known and acceptable. Samsung’s Electro-Mechanical division recently partnered
route. The buses receive the top-up with PowerbyProxi to develop new charging devices. Samsung, being a member of the
charges from the top-up stations that A4WP consortium, is looking forward to promote the Qualcomm’s WiPower standard based
appear as plates on the road. on resonance.
After completing one route, the bus
is parked on that plate where the driver electric and fully-electric vehicles, Eric the reports, John Perzow, vice president
lowers the receiver plate from the bottom adds, “To have Toyota, the world’s lead- of Market Development for the Wireless
of the bus to 4 cm below the road surface. ing carmaker, licensing our intellectual Power Consortium said that, Qi is con-
The bus is charged only for ten minutes property, underscores the importance of stantly enhancing to give away the best
before starting on the next route. It fol- the technology.” wireless charging experience.
lows the same magnetic flux technology In future we will not only see the Stu Lipoff, IEEE fellow, said in a
for wireless charging. Though these buses extensive use of wireless charging conference, “One vision is to have NFC
are currently being used on a trial basis, it technology but also see some enhance- RFID in the phone that provides the local
is not long before wireless charging will ments in the standards enabling this power company with billing informa-
come to the mainstream. technology. Although Qi is typically an tion so that they can charge your credit
“We envision a world in which wire- inductive charging technology, WPC is card for power purchased as you walk
less charging would accelerate the adop- developing a resonance extension to its by the public outdoor wireless charging
tion of clean, green electrified vehicles,” specifications. Resonant extension to Qi infrastructure.” He added, “With the
says WiTricity CEO Eric Giler in one of is expected to be backward compatible development of extended distance wire-
the reports. With Toyota deciding to li- with more than 40 million products and less charging, it even becomes possible
cense intellectual property from WiTricity devices globally, including the 60 mod- to charge the devices by walking outside
to offer wireless charging on both hybrid- els of Qi-compatible devices. In one of on the street in proximity to public port-
able power infrastructure.”
Itay says, “PMA is already working
The cost of the product is mainly due to the testing to globalise this wireless charging by
and compliance efforts that go into the product. The integrating more technologies at physi-
cal layer. We are working on to provide
semiconductor content does not increase price of the networking standards and to deploy
product but the R&D that goes into developing the product public hotspots for wireless charging.” 

increases the price.” —Srivasta Raghunath, TI The author is a technical journalist at EFY

68 August 2014 | Electronics For You www.efymag.com


ANTENNAE DESIGN

Differential Solvers in
Computational Electromagnetics
“Computational electromagnetics, computational electrodynamics or electromagnetic
modeling is the process of modeling the interaction of electromagnetic fields with
physical objects and the environment. It typically involves using computationally efficient
approximations to Maxwell’s equations and is used to calculate antenna performance,
electromagnetic compatibility, radar cross section and electromagnetic wave propagation
when not in free space,” according to Wikipedia

VISHNU GAUTAM computer implementations (see Fig. 1). would be unacceptable.


The CEM implementation should Flexibility. Generally, one method

R
emember yourself calculating have following characteristics: produces best result for one type of
electric field intensity, current Accuracy. The results should be ac- problem. The implementation should
density or vector potential curate to the real situations. be made flexible so that it would pro-
in idealised cases during your 12th Stability. Results should be stable, duce stable results for other type of
standard. Those problems really gave which means, if the parameters and problems as well.
a summary of the electromagnetics excitation are changed then its output Parallelisation. For fast results,
(EM) working in different situations. should be pre- one computer is not enough. So it must
Advancing further you may recall dictable, that offer parallel computing.
having calculated the field quantities is, it should The computing cost depends on
in case of dipole antennae (standard not become size of the solution and time required
case). Well these problems were easy unstable. to find the solution. It should be as
to analyse because of the symmetry Scalabil- low as possible. At the core of com-
existing in those situations: Just apply ity. It should putational electromagnetics is the
the Maxwell equations and symmetry be scalable numerical method used for a specific
will do its work. in te rms o f problem. Broadly, there are two types
But what if the problem’s geometry the computer of methods for solving EM problems:
is not symmetric, what if there is an ur- memory. If it Analytical method. This gives an
gent need to find the parameters with- consumes a insight into the process but is generally
Fig. 1: Block diagram of
out going much into the mathematics, CEM implementation
large memory limited to idealised processes only.
what if a practical situation (for exam- (basic abstraction) then surely it Numerical method. This gives an
ple, studying effects of mobile phone approximate solution of any type of
on pacemaker) needs to be analysed in problem and structure. With numerical
a couple of hours? method the analysis and prototyping
Surely calculating each Maxwell of complex systems is easy. It also al-
equation and approximating them will lows investigation of material proper-
not be a fast solution to the situation ties without performing any experi-
from industry point of view. In these ment, besides easy optimisation and
situations we use electromagnetic modification for its implementation.
modelling or, precisely, computational Presently, simulators use a combina-
electromagnetics. tion of both the methods to reduce the
Computational electromagnet- computational cost.
ics (CEM) is a very challenging and Implementation of CEM (Fig. 2)
multidisciplinary science that aims at efficiently is not an easy task. There
finding solutions of Maxwell equations are various problems associated with
at boundary conditions (broadly the their implementation, such as the type
material boundaries of geometry). It of material to be analysed (homoge-
involves numerical methods, efficient neous/inhomogeneous, isotropic/
(not effective) algorithms and their Fig. 2: CEM process anisotropic, etc), type of geometry

70 August 2014 | Electronics For You www.efymag.com


ANTENNAE DESIGN
(regular/irregular, large/small, etc), (triangular, quads) and do not require rial properties it can handle, whether
undetermined problems like those extra boundary over the geometry. the results have to be in time domain
when there are resonating structures Computations are done for the current or in frequency domain, what would
within the geometry or when the mate- and charge although the 3D patterns be its operating frequency, etc. These
rial contradicts in the problem. can be generated. are secondary factors. The primary fac-
Many advanced concepts, such tor that determines the type of numeri-
as iterative solvers, preconditioned What determines the choice cal method is the electrical size/length
algorithms, domain decomposition of numerical method of the structure itself.
methods and parallel computing, have Apart from the planar and 3D type Electrical length is defined as ratio
been developed and implemented in geometry the numerical method is cho- of physical length of device to the op-
present solvers. sen on the basis of required accuracy erating wavelength. As the electrical
CEM implementation has several of the result, the memory limitation of length increases or decreases, method
disadvantages with the major one be- method, what different type of mate- to be used will also vary, as shown in
ing the theoretical model results. The Fig. 4.
process is purely theoretical with no
resemblance to experiments. So it Domains in which
would definitely need a validation solvers works
with the practical results. Second, there Like time and frequency domains in
will be numerical method error and the signal analysis, the CEM tech-
mesh error that would go unnoticed, if niques are also domain-specific and are
not validated. optimised for those. For CEMs there
are basically five domains, namely,
Numerical methods static, time, frequency, Eigen and ray
The Maxwell equation can be written tracing, as depicted in Fig. 5.
in two forms: integral and differential. Static. In this domain there is no
Literally, integration means joining time variation of the equations and it
things and differentiation means di- Fig. 3: General steps involved in a numerical method is mostly used for DC bias field con-
viding them. This literal definition of figuration of low field approximation.
the two basically helps in determining Time. In this method the unknown
which type of geometry can be applied field quantities are real-time varying in
with which type of Maxwell equation. nature. This method does not use tra-
If the geometry is planar and complex ditional matrix method, instead nearest
then the numerical method using neighbour interaction is calculated and
integral Maxwell equation would be interpolated. The applied source is
preferred. impulsive in nature.
The material boundaries in com- Frequency. This is a good choice
plex geometry cause discontinuities Fig. 4(a): Electrical length factor by which a
if we need to calculate results all over
in the electric and magnetic fields. The particular type of method is used the bandwidth of the centre frequency.
type of Maxwell equations are then The excitation is sinusoidal
applied to these discontinuities, thus in nature and broadband
reducing the problem to algebraic results are transformed into
expression (integral ones) and differ- time domain by inverse Fou-
ence expressions (in case of differential rier transform. However, for
Maxwell equation). Numerical meth- low frequency this method
ods employing differential Maxwell is unsuitable, so in that case
equation discretise the geometry by we need to use static do-
volumetric mesh (hexahedrons and main methods. Also, each
tetrahedrons) and require an extra frequency needs separate
absorption boundary condition (ABC) computation, so frequency
type boundary over the geometry. In sweep should be selected
these methods the computations are appropriately. Otherwise, it
done for the EM fields. would take a lot of memory.
The numerical methods employing Eigen. In this domain no
integral form of Maxwell equation dis- excitation source is applied.
Fig. 4(b): Electrical size vs complexity of materials (courtesy:
cretise the geometry by surface mesh FEKO-EM Simulation Software) This method is used to find

www.efymag.com Electronics For You | August 2014 71


ANTENNAE DESIGN
sum of basic functions. In this method
the calculations are required only at
boundary values and not throughout
the space, as shown in Fig. 6.
MOM creates a surface mesh over
the modelled surface. MOM solutions
are typically limited to objects that are
only one or two wavelengths in size,
for example, to calculate and extract
detailed multiport s-parameter of all
the interconnects on PCBs. Analysis of
large structures becomes difficult be-
cause of the large amount of memory
and time required to compute.
Fig. 5: Methods classification Some disadvantages of the MOM
method are:
1. As the geometry
increases, the storage re-
quirement and comput-
ing time increase as the
square of the size of ge-
ometry.
2. It can be applied
only to those problems for
which the Green’s func-
tion can be calculated.
3. Different frequen-
cies require different for-
mulations (due to fre-
quency domain).
4. It does not satisfy
boundary condition at
every point; satisfies only
Fig. 7: Typical tetrahedral mesh used in FEM simulation
over an integral average
(Courtesy: Agilent Technologies) of boundaries.
Multilevel fast multi-
Then the optics method combines the pole method (MLFMM). It is an al-
Green’s function to calculate fields by ternative approach to the MOM as it
current and then uses the boundary requires less memory. It is suitable for
conditions to determine current in- analysis of very large problems, such
duced on the objects. This domain has as RCS and reflector antenna. Accord-
two methods: PO and UTD. ing to emfieldsolution.com, “The object
is placed in a box which is then split
Fig. 6: Wire-frame MOM model of a cellular Methods using integral into eight smaller boxes. Each of the
telephone handset with an antenna connected to
the mesh (Courtesy: Book by Thomas A. Milligan)
Maxwell equations boxes is then divided again recursively
Method of moments (MOM). Also until the size of smaller boxes contains
the resonant frequencies and propaga- known as 3D planar method, it uses few basic functions.” It also illustrates
tion modes of the waveguide, cavity, Green’s function over the planar that, if a particular MOM solution re-
propagation constant, etc. The results structure, thus reducing the Maxwell quires 150GB memory then MLFMM
are field configurations that would be equations to algebraic expressions. would require only 1GB.
preferred to be excited by real environ- Layered stack up-structures can also Partial element equivalent circuit
mental sources. be analysed as the Green’s function can (PEEC). In this method the integral
Ray tracing (or optics). As the elec- be applied, thus x-y plot is established equations are interpreted as Kirch-
trical size increases, the integral and as in planar structure. It actually ap- hoff’s voltage law applied to basic
differential methods become useless. proximates the current distribution as cell. So, overall, the geometry in this

72 August 2014 | Electronics For You www.efymag.com


ANTENNAE DESIGN
method would result in a complete
The other side of the story
circuit, and it also allows some circuit
elements to be added easily—an edge Although CEM results are quite accurate for the complex problems but they cannot be
relied on completely. A particular method is used to solve particular type of problems.
over the other solvers. This type of
solver allows analysis both in time and
frequency domain.

Methods using the


differential Maxwell
equations
Finite-difference time domain (FDTD).
It is a time domain technique and
thus a single simulation can cover a
Fig. 8: Validating gain pattern of horn antenna. Mark the differences between CST (left) and
wide frequency range. This method HFSS (right)
allows easy computations for each cell
made of different materials. After the These methods also have errors associated with them. Thus there is a strong requirement
process, the time domain results are for validation of the results. Validation is done to answer the question “How much does
the result obtained by numerical method resemble the reality?”
converted to frequency domain by the
use of DFT techniques. Validation techniques
In validation process, basically a comparison is done between the patterns, values, etc.
Consider a large structure. This
There are four approaches to validating the results of a numerical method:
method will not produce dense mate- Validating using other numerical solution. Different numerical methods with proper
rial matrices (as done by others); it will modelling of problem can be used to validate, as shown in Fig. 8.
include only the nearest neighbour Validating using analytical solution. If the analytical theory behind the problem is
interaction. This method can cover fre- known then that can be used to validate the results of the simulation.
quencies from near low to microwave, Validating using experimental results. By performing the experiment of the problem
and up to visible light frequencies. The under the same condition.
Validating using intermediate results. Intermediate results of the simulation and the
discretisation grid used is rectangular
experimental results are cross-checked to save the length of validation.
(usually) and separate grids are used
for E and H calculations.
A disadvantage of the method is Finite element method (FEM). It is trically large geometries, the mesh may
that, although one simulation will defined as an approximation technique become very complex. And that would
work for a wide frequency range, this to discretise geometric objects. Each result in large matrices which would
is not the case with the ports. A single part of discretised structure is called a require huge memory resources.
simulation has to run for each port finite element. It is a frequency-domain Its advantages are:
placed on the geometry. So, if there are flexible method for geometrical and 1. It is most suitable for high ‘Q’
N ports in a structure, N simulations material handling of closed structures. circuits
would be required. It generates a sparse matrix of un- 2. Useful for analysis of filters, cavi-
Some applications of the method are: known field quantities. This method ties, resonators, etc
1. Time domain reflectrometry requires meshing of entire space and 3. Provides good results for ge-
(TDR) needs additional ABC boundary over ometries with large number of ports,
2. Antenna placement on cars, the structure to be analysed. The such as IC packages and multi-chip
trains, etc unknown field quantities are approxi- modules.
3. Simulation of phone with SAM mated over each mesh as sum of func- Apart from these, several other
head to calculate SAR value tions, as shown in Fig. 8. methods like FIT (finite integration
4. When the module is electrically Its disadvantage is that, for simula- method) over FEM, TLM over FDTD,
large and ports are less tion of structures of complex and elec- MLFMM over MOM have been de-

Your favourite Magazine on


THE COMPLETE MAGAZINE ON OPEN SOURCE
Open Source is now on the Web, too.

OpenSourceForU.com
Follow us on Twitter@LinuxForYou

74 August 2014 | Electronics For You www.efymag.com


ANTENNAE DESIGN
veloped, but their basic functioning is distribution is applied to the bound- lates transmission of energy between
based on the methods described above. ary condition but the structure blocks various ports and open structures of
the incident waves on each part of the the model. Typical applications include
High frequency methods structure. The field quantities are then TDR, RCS and dispersive materials.
For computing field quantities of determined from the diffracted waves. 2. Frequency domain solver. It uses
Maxwell equation at electrically large Consider a reflector antenna with ex- hexahedral and tetrahedral mesh.
structures, optical methods have been citation as a dipole antenna placed in 3. Eigen mode solver. It is recom-
developed. These methods can be di- front of it. The pattern and quantities mended strongly for loss-free struc-
vided into (a) field -based methods like will be calculated by PO in the front tures.
UTD (uniform theory of diffraction) region while the backside region will 4. Integral solver. It uses MLFMM
and (b) current-based methods like PO be computed by UTD. technique.
(physical optics). 5. Multilayer solver. For planar
In PO method the current distribu- CST, HSS, FEKO solver structures as it is based on MOM.
tion is calculated by the use of Green’s overview 6. Asymptotic solver. It uses opti-
function (MOM) and then this distribu- Computer simulation technology mi- cal techniques for electrically large
tion is applied to the boundary condi- crowave studio (CST MWS) is one of structures.
tions of the structure. Then calculations the most comprehensive tools for RF Apart from CST, HFSS and FEKO
are performed on the structure by designers and engineers. It provides are also widely used softwares for
inducing that current distribution and the maximum of six solvers, namely: CEM applications. HFSS provides two
updating the main results. The inci- 1. Time domain solver. It uses solvers: FEM and HFSS-IE (MLFMM
dent wave on the structure continues hexahedral mesh and is very efficient based). FEKO provides five solvers:
or passes through it as if the structure for high frequencies. It provides two FEM, MOM, PO, UTD and MLFMM. 
was not present. alternative methods: transient solver
The UTD method employs a dif- (FIT) and TLM solver (for better simu- The author, a B.Tech in EC, has contributed some
ferent strategy. Here also the current lation of EMC/EMI models). It calcu- other interesting articles as well in the past

www.efymag.com Electronics For You | August 2014 75


EFY Plus DVD

This Month’s DVD Contents


This month’s DVD brings you GPU machine learning library and simulators along with an
automation and measurement software for optical systems. If you are an enthusiast, there is
a robotic research tool-kit for you. The top ten software in the DVD are mentioned below
pankaj V. 4. Liquid PCB analogue circuits. Its two independent
parts, SapecNG and QsapecNG, are the
1. GPUMLib Liquid PCB is an open source CAD framework and the gui of the applica-
GPUMLib is a C++ and CUDA-based application for designing PCBs. This tion, respectively. This tool allows you to
high-performance GPU machine-learn- simple tool has a unique interface with draw, solve and analyse analogue circuits
ing library. It includes various machine- all the functionality and features avail- and manage them as well. Supported OS:
learning algorithms and components able in just a few clicks. Also, it has a Windows, Linux, MacOSx. Size: Windows:
like back propagation (BP) and multi- large, powerful file dialogue where 4.6MB, MacOSx: 15.9MB, Linux: 1.6MB
back propagation (MBP), matrix fac- all the recently visited directories are
torisation and radial-basis function automatically remembered. Addition- 8. Gerber2PDF
networks. It also provides machine- ally, the one-menu system allows you Gerber2PDF is a simple command-
learning researchers and practitioners to have all the functions in one menu. line tool which converts Gerber files
with an autonomous training system Supported OS: Windows. Size: 1.3MB to PDF. It can convert multiple Gerber
for creating BP and MBP networks. Sup- files at once and allows you to place
ported OS: Windows. Size: 227MB 5. Mobile Robot the resulting layers on different pages
Programming Toolkit within the PDF. Also, you can combine
2. itom The Mobile Robot Programming Toolkit different layers onto a single page and
itom is a lab-automation and measure- is an open source and extensive tool render them with custom colours and
ment software designed for developing which can be used for performing robot- transparency. Supported OS: Windows.
and running optical systems, but it is ics research to design and implement Size: 311kB
not limited to this field of application. algorithms about simultaneous localisa-
itom is a versatile tool which can be tion and mapping, navigation and com- 9. gpsim
used for building the control software puter vision. It includes portable and gpsim, a software simulator for PIC
for any measurement setup and features well-tested applications with libraries microcontrollers from Microchip, is
easy integration of different hardware covering data structures and algorithms fast with a simulation speed of about
like cameras or actuators through vari- employed in common robotics research 20MHz. It allows real-time simulation
ous plugins. itom is an open source free areas. Supported OS: Windows, Linux. to test PIC the same way as in a tan-
tool but you will find its functionality Size: Windows 32-bit: 102MB, Windows gible universe. Gpsim’s accurate design
comparable to the commercial software 64-bit: 112MB, Linux: 20.9MB makes it comparable to a real PIC from
packages like MATLAB or LabView. the core to the I/O pins, including all
Supported OS: Windows. Size: Windows 6. SVEditor their internal peripherals. Supported OS:
32-bit: 118MB, Windows 64-bit: 168MB SVEditor, an Eclipse-based IDE writ- Linux. Size: 2.4MB
ten in Java, can be used for Verilog
3. Magic VLSI and SystemVerilog development. The 10. CPUSim
Magic is an easy-to-use VLSI layout tool interface is a colourising editor for Sys- CPU Sim is a Java application that al-
which has been popular with universi- temVerilog with support for content lows users to design simple computer
ties and small companies. It is an open assist, source navigation, SystemVer- CPUs at microcode level and to run ma-
source EDA alternative to commercial ilog source templates, source indent chine-language or Assembly-language
tools which will provide you with vari- and auto-indent, and context-sensitive programs on those CPUs through simu-
ous useful features for your product de- viewing of source documentation. lation. It is a useful tool for instructors
sign flows. The all new interactive maze Supported OS: Windows, Linux. Size: who want their students to get hands-on
router will allow you to specify hints to Windows 32-bit: 78.3MB, Windows 64- exposure to a variety of architectures
control routing. Also, with the multiple- bit: 78.4MB, Linux: 77.3MB and a chance to design and implement
window feature, you can view several their own architectures. Supported OS:
portions of a circuit at the same time, or 7. QsapecNG Windows, Linux, MacOSx. Size: 7.3MB 
even portions of different circuits. Sup- QSapecNG is an easy-to-use, Qt-based
ported OS: Linux. Size: 3.6MB program for symbolic analysis of linear The author is a technical journalist at EFY

76 August 2014 | Electronics For You www.efymag.com


buyers’ guide

RF Modules to Suit Your Application


Everything is going from wired to wireless, owing to clutter associated with the wired
systems. RF (radio frequency) communication technology is the one making this change
happen. RF modules with different protocols are now used widely in electronic designs to
enable wireless communication. Let us take a look at different RF modules available and
some parameters to select a right one for your application

Ankit Gupta

A
n RF module is nothing but a
small electronic device which
is used to communicate be-
tween two devices, wirelessly, using
radio waves. This is one of the most
preferable methods of wireless com-
munication as it does not require line
of sight. Radio circuit design is a com-
plex field and the performance highly
depends on accuracy of components, a
perfectly designed layout and carefully
monitored manufacturing process.
Also, the design needs to be then certi-
fied after conformance testing, as radio
circuits are subject to limits on radiated
emission. Due to all these, designers
prefer to use off-the-shelf RF modules
which save a lot of money and reduce
time-to-market to a great extent.
These RF modules come with dif-
ferent carrier frequencies allowed by
national and international regulations, Wireless communications and networks (Courtesy: http://eng-cs.syr.edu/research/wireless-
such as 315MHz, 433.92MHz, 868MHz, communications-and-networks)
915MHz and 2400MHz. Other than
frequency, these modules are also standards, which make both these These parametric filters will allow you
differentiated based on the protocol terms a synonym for each other. to refine your search results to find the
standards they use for communication, Wireless revolution enters its next most suitable part for your application.
such as Wi-Fi, Zigbee, Bluetooth or phase of deployment with recent ad- Below are some parameters and their
other proprietary protocols. vent of the Internet of Things (IoT). brief description. Table I shows some
Now WLAN capabilities have been manufacturers of Wi-Fi modules.
Wi-Fi added even to the consumer prod- Protocol standards. The original
Wi-Fi and WLAN have been inter- ucts, which give users the comfort of version of the standard IEEE 802.11
changeably used in general English. controlling these devices with a smart was released in 1997 and clarified in
Wi-Fi is a local area wireless technol- phone or over the Internet. To achieve 1999, but it stands obsolete today. The
ogy that allows electronic devices to WLAN capabilities, of-the-shelf avail- wireless LAN standards in use these
exchange data or connect to the Inter- able Wi-Fi modules are the best solu- days include 802.11 a/b/g/j/n/p/ac/
net using 2.4GHz UHF and 5GHz SHF tion for the reasons stated above. ad. Each protocol standard has differ-
radio waves. Wi-Fi Alliance defines There are different kinds of Wi- ent data rate, frequency, modulation
Wi-Fi as any wireless local area net- Fi modules available. The vendors scheme, range and power consumption.
work (WLAN) products that are based normally categorise the modules by The newer modulation methods and
on the IEEE 802.11 standards. Most parameters such as data rate, range, RF coding rates are generally more efficient
modern WLANs are based on these band, certification and packaging type. and sustain higher data rates, but older

78 August 2014 | Electronics For You www.efymag.com


buyers’ guide
methods and rates are still supported
Table I
for backwards compatibility.
Operating frequency band. Table
Different Manufacturers of
II shows operating frequency bands
Wi-Fi Modules
for different Wi-Fi protocol stand- Redpine Signals Digi International
ards. Some Wi-Fi modules support Rabbit Semiconductor Wi2Wi
dual frequency bands. For example, Lantronix Rabbit Semiconductor
while 802.11n solution supports both
Laird Technologies Silicon Laboratories
the 2.4GHz and 5GHz bands, 802.11g
supports only 2.4GHz band. Each Microchip Infineon
range is divided into a multiple chan- Murata Freescale
nels. Countries apply regulations on B&B Electronics Atmel
number of channels as well as users
and maximum power levels within a
Table II
frequency band.
Data rate. Each Wi-Fi standard
Standards and Corresponding
is rated according to its maximum Frequency Bands
theoretical data rate. Different stand- Frequency Band Standard
ards have different data rates due the 2.4GHz (2.4 - 2.483 GHz) 802.11b/g/n
technology used for each standard. 5GHz (5.15 - 5.725 GHz) 802.11a/h/j/n/ac
Practically, these data rates are never 5.9GHz (5.85 - 5.9 GHz) 802.11p
reached. These are only the theoreti-
cal maximum value for a particular to Wi-Fi devices inside office, home,
technology. The theoretical maximum warehouse, etc. Directional antennae
data rate of a Wi-Fi module could be on the other hand are used for focus-
from 1Mbps (802.11b) to 6.75Gbps ing the wireless signal in a specific
(802.11ac). You need to decide the re- direction, resulting in a limited cover-
quired data rate for your application. age area. The typical applications are
Higher data rate would not always be wireless connection from one building
the best choice as sometimes high data to another. Through use of directional
rates would not even be sustainable antennae, the connection can be ex-
with large number of clients. tended with many kilometres between
Transmit range. The range of stations.
a Wi-Fi network is always limited Secure Wi-Fi authentication
and majorly depends on the specific schemes. In 2001, a group from the
protocol used and the transmission University of California, Berkeley pre-
power. Interference and obstruction sented a paper describing weaknesses
from environment also plays some in the 802.11 Wired Equivalent Privacy
role. For example, approximate (WEP) security mechanism defined in
maximum indoor range for 802.11g the original standard. The IEEE then
is around 38 metres. set up a dedicated task group to create
OS support. It is highly desirable a replacement security solution. The
that the module quickly gets connected Wi-Fi Alliance announced an interim
and configured with Android, iPhone, specification called Wi-Fi Protected
Linux and other embedded OS. If you Access (WPA) based on a subset of the
need to build in this feature into your then current IEEE 802.11i draft. WEP,
product, you need to check the driver WPA, WPA2, WPA2-Enterprise, WPS,
level support, and configuration and WMM, WMM-PS are typical Wi-Fi
management support from the Wi-Fi security types these days. Each type
module carefully. has different advantages and disad-
Antenna. Both omni-directional vantages. These security schemes help
and directional antennae are available protect information from Wi-Fi devices
in Wi-Fi modules. Omni-directional on a network.
antennae are typically used for wire- Packaging type. Both surface-
less coverage providing connectivity mount (SMT) and through-hole pack-

www.efymag.com Electronics For You | August 2014 79


buyers’ guide
ages are available for these modules.
Table III Table IV
SMT packages are mostly used for
their known advantages, but through-
Some Manufacturers of Some Manufacturers for
holes are more suitable for testing and
Zigbee Modules Bluetooth Modules
prototyping purpose.  Atmel Corporation  Abracon
 California Eastern Laboratories  Amp’ed RF Technology
Zigbee  Digi International  Microchip
These are tiny blue chips that can com-  Microchip  Multi-Tech Systems Inc
municate wirelessly with each other.
 Murata  Panasonic
They can do simple things like replac-
 NXP  Semtech
ing a couple of wires in serial com-
munication. There are lots of different  Panasonic  STMicroelectronics
modules available but all of them
come with similar pin-outs. Power, It is mostly used for transmitting data
ground and TX/RX lines are in the SMART READY SMART in a secured way over short distances,
same place, making the chips pretty Fig. 1: Bluetooth Smart Ready, Bluetooth and
wirelessly. Bluetooth uses a radio
interchangeable for most of the simpler Bluetooth Smart logos technology called Frequency-Hopping
applications. Spread Spectrum (FHSS). The transmit-
You will encounter two terms this upgrade yourself with a conver- ted data is divided into packets and
XBee and Zigbee while working with sion kit available on the internet. each packet is transmitted on one of
these modules. XBee is nothing but Latest Series2 (2B). These modules the 79 designated Bluetooth channels.
Digi’s (a company) own Zigbee-based come with improved hardware as Each of these 79 channels has a band-
protocol. These modules use the IEEE compared to ZB modules with better width of 1MHz, starting at 2402MHz
802.15.4 networking protocol for fast power usage. These modules run the and continuing up to 2480MHz in
point-to-multipoint or peer-to-peer ZB firmware itself. 1MHz steps. Bluetooth 4.0 uses 2MHz
networking. They are designed for Antenna. Antennae available in spacing, which allows only 40 chan-
high-throughput applications requir- these modules are chip, wire, u.FL nels.
ing low latency and predictable com- and RPSMA antenna. Chip antenna
munication timing. To select the right is nothing but a small chip that acts Bluetooth LE
module for your application you as an antenna. It is being replaced by Bluetooth LE, marketed as Bluetooth
need to understand things like dif- trace antenna that is directly printed Smart, is intended to provide consid-
ference between Series1 and Series2, on the PCB. Wire antenna is just a erably reduced power consumption
different antenna types available and wire sticking out of the module. u.FL and cost while maintaining a similar
what Pro models are. and RPSMA on the other hand are communication range as compared to
Series. both connector-based antenna systems Bluetooth classic. Bluetooth 4.0 specs
Series1 (XBee 802.15.4). A Series1 where your own antenna can be con- allow devices to implement Bluetooth
module does not indicate series on it. nected through a connector. These are LE, Bluetooth classic or both. The de-
Other series modules do indicate it on very useful when your object is en- vices that implement both the systems
the chip. So if nothing is mentioned, closed in a chassis and you want your are known as Bluetooth 4.0 dual-mode
your module is Series1. Note here that antenna outside the enclosure. devices. Bluetooth Smart is v4.0 LE
Series1 and Series 2/2.5/ZB hardware Regular vs Pro. The Pro normally only and Bluetooth Smart Read sup-
are not compatible with each other. consumes more power which directly ports dual mode (refer Fig. 1).
Series2 (Znet 2.5). Series2 modules improves its range. Use the Pro version The parameters for selection are
require configuration unlike Series1 only when you require better range. more or less the same, as already dis-
modules. These modules are not com- But this is a trade-off when it comes cussed for Wi-Fi and Zigbee. These
patible with Series1 modules and are to a battery-operated device. So select are data rate, range, power consump-
not sold any more in the market. wisely for the application at hand. tion, package and certifications.
Series2 replacement (ZB). With Table III show some manufacturers Table III show some manufacturers
Znet2.5 discontinued, ZB is often called producing these modules. for Bluetooth modules. With all the
Series2 module. Though this is not above information, you can easily
technically correct, it does distinguish Bluetooth decide on the wireless protocol and
these from Series1. ZB is nothing but Bluetooth is another technology stand- select the best module for your ap-
Znet2.5 with a new firmware which al- ard for connecting devices wirelessly. plication. 
lows it to run in a transparent mode or The radio-frequency range for Blue-
work with API commands. You also do tooth is between 2.4GHz and 2.48GHz. The author is a technical editor at EFY

80 August 2014 | Electronics For You www.efymag.com


Career

Plenty of Jobs Unfold for PCB Designing


Lack of quality designers and preference for VLSI and embedded bring many new
opportunities to the field of PCB designing. In this article, we cover the kind of opportunities
available in India, the skills expected and pay packages offered, plus some suggestions
from industry experts

Abhishek A. Mutha panding horizons in electronics market cally, three months before allocating
has brought tremendous demand for them to entry-level engineering pro-

A
printed circuit board (PCB) trained and experienced PCB design- grammes. Kumar informs, “Currently
designer uses software tools ers, informs Dhiraj Kumar, director, most engineering colleges have digital
to design circuit boards, which Systems Engineering, Argus Technolo- and analogue electronics labs as part of
are integrated into machines and de- gies. He says, “There are significant job their curriculum, which is an
vices that are as trivial as a toy to as opportunities in India for advantage as compared to
serious as an aircraft. As a result, job professionals VLSI design area where a
requirements vary from industry to specialised training of one
industry. year is a must in order for
A PCB designer, them to be job-ready.”
typically, works ei- A fresher, typically,
ther at a manufac- starts his career with
turing facility or at footprint preparation
an engineering firm and design verifica-
in front of a computer, tion. Later his work
in an office or cubicle, slowly moves into
designing the boards module designing,
using specialised soft- library creation and
ware tools. Each board two-layered board
must be created to accu- design. Dhananjay
rate specifications, and he Kulkarni, COO,
or she has to justify that it Maven Systems
will function under diverse says, “At an ad-
set of conditions. vanced level, the designer can
with build multilayer (six to eight) PCBs
Preference for VLSI PCB design exper- with mixed-signal, high-speed board
and embedded tise.” However, the industry is design. And last stage is when he also
“IC design industry attracted the best currently running short of qualified starts analysing and contributing to
talent from IITs and PCB design in- designers in the area of electronic sys- thermal analysis, design for fabrica-
dustry was the younger brother. But tem design at all the levels. He adds, tion, assembly, testability and manu-
since last two decades, the issues that “Most freshers in electronics opt for facturing–design for manufacturability
were to be addressed at the chip level VLSI design/verification and embed- (DFM), design for test (DFT), design
have moved to the PCB area due to ded software, creating a vacuum for for assembly (DFA) and design for
miniaturisation and ever-increasing core electronics designing jobs. On the fabrication (DFF).” In short, “There is
frequency requirements,” informs flip side, this can be seen as an oppor- value addition for the PCB designer
O.J. Sathish, CEO, SIENNA ECAD tunity for freshers looking to get into right from the start of his career until
Technologies Pvt Ltd. Hence career PCB designing.” he becomes a super-expert after 20
opportunities in the PCB designing years.”
industry have grown tremendously in Begin with testing and There is good scope in this indus-
the last ten years. The need for good verification try for electronics hardware engineers,
PCB design engineers is felt across all In order to meet the growing demand believes Amit Gohel, founder, Eleics
major electronics companies. for engineers, most electronic system Design. For freshers, he says, “Entry-
It is a well-known fact that PCBs design companies put freshers through level roles will be inclined towards
are the heart of electronic systems. Ex- an extensive training program of, typi- PCB design verification, quality analy-

82 August 2014 | Electronics For You www.efymag.com


Career

Various entry-level positions in PCB industry post training


 Circuit design engineer for product/services organisations
 PCB CAD design engineer for product/services organisations
 Test engineer
 Process engineer in electronic manufacturing companies
 Supply-chain management roles
 Field application/customer support engineer

sis and quality control initially. It will freshers and offer them training for a
be a good learning curve for them year. During the training period, a sti-
to verify their seniors’ designs.” He pend of 10,000 per month is provided
adds, “Once they are design-ready, and, on confirmation after a year, they
they would later be assigned to design are offered a minimum of 200,000
small circuit boards and customer per annum.” “We recruit from other
PCBs.” engineering institutions and focus on
skill-oriented candidates rather than
Remuneration the institute. But for signal/power
Printed circuit boards are fundamental integrity and EMI analysis, we recruit
components of all electronics and the masters degree holders particularly,”
field is well entrenched in India, which complements Satish.
is one of the top global manufactur- Going by the statistics provided
ers of PCBs today. Vivek Madhukar, by TimesJobs.com, a massive 44% of
COO, TimesJobs.com explains, “While the jobs in the PCB industry are in
starting salaries for freshers may be the salary range of 100,000 to 250,000
low, much like good programmers are rupees per annum. Around 28% jobs
in high demand, good PCB designers for junior-level professionals pay
can also command salaries upward of anywhere from 250,000 to 500,000
1.5 million (15 lakhs). Most careers for rupees per annum, while 18% jobs for
these skills are in the manufacturing, mid-level pay between 500,000 and
IT and engineering sectors.” Talk- 1,000,000 rupees.
ing about locations for jobs, he says,
“The golden triangle of Bengaluru, Demand areas
Hyderabad and Chennai account for a According to TimesJobs.com, the
majority of jobs in the field, so freshers manufacturing and engineering in-
should be open to relocate.” dustry tops the list of industries hiring
Kulkarni informs that a fresher’s engineers to work in the PCB design
pay package is typically 150,000 rupees domain with about 34% share of jobs,
per annum. At Argus Technologies, followed by the IT industry with a
Kumar shares, “A fresh graduate share of 26%. IT-hardware/semicon-
would be offered a starting salary of ductor and networking industries offer
216,000 per annum whereas an expe- 14% of the jobs.
rienced professional with two to three Apart from Bengaluru with 27%,
years of experience would get 360,000 the list of top locations for jobs in PCB
per annum.” “We do hire fresh can- design field indicates Hyderabad,
didates from engineering colleagues Chennai and Mumbai sharing 12%,
and have no preference to IITs/NITs 10% and 9% of the pie, respectively.
as such. Selection is based on a writ- Remaining jobs are scattered in other
ten test and personal interview. In locations.
the written test, our focus is mainly
on basic electronics, mathematics and Skills required
problem-solving skills.” Printed circuit board designers utilise
At another PCB designing firm computer-aided design (CAD) tools to
SIENNA ECAD Technologies Pvt Ltd, create circuits that are accommodated
Savita R. Ganjigatti, VP engineering - on these boards. They must also be
PWB Design informs, “Yes, we recruit able to specify how the connections

www.efymag.com Electronics For You | August 2014 83


Career

Preferred educational Skills expected


requirements Freshers Experienced
Diploma/BSc/BE/BTech in Electronics Technical skills
& Communications or Electrical & 1. Strong fundamentals in basic electronics 1. EDA tool knowledge
Electronics 2. Basic understanding of electronic components 2. Exposure to manufacturing and PCB materials
and their package information 3. Preference to CID qualification (certified intercon-
3. Basic understanding of PCB design tools such nect designer from IPC)
will be shown. Some designers perfect as Proteus, Eagle, Altium and ORCAD 4. Should be strong in transmission line theory.
themselves in digital or analogue de- 4. Good aptitude 5. Should be capable of designing different types of
signs while others work on the routing PCBs (designing for RF communication is different
from designing for power and control applications)
layout. They make sure that the final 6. Capability of designing more than two-layer PCBs
design works as expected and meets 7. PCB troubleshooting in case of any track/via
industry requirements, before it is sent shortage or open
to the manufacturing facility for PCB Soft skills
fabrication. 1. Continuous learning drive
EFY is opening training centres 2. Communication skills
all over India where hands-on PCB
designing is a favourite course among
the engineering students and trainees
Major contributors to this article
from the industry. Mentioning about  Amit Gohel, founder, Eleics Design
the 3-day introductory course, Ramesh  Dhananjay Kulkarni, COO, Maven Systems
Chopra, editor of EFY magazine and  Dhiraj Kumar, director, Systems Engineering, Argus Technologies
executive chairman of EFY Enterprises  Ramesh Chopra, editor of EFY magazine and executive chairman, EFY Enterprises Pvt Ltd
says, “Our objective is to introduce the  Sathish, CEO, SIENNA ECAD Technologies Pvt Ltd
 Savita R. Ganjigatti, VP Engineering - PWB Design, SIENNA ECAD Technologies Pvt Ltd
students to PCB designing by teaching
 Vivek Madhukar, COO, TimesJobs.com
them the fundamentals using an open
source software like gEDA. Since the
trainees are from electronics field, they the PCB design in detail as well. well as labs in their curriculum, which
learn the skills quickly. Of course, they at times might look like brand building
need to practice thereafter if they wish Near future tools for sponsoring companies with
to become experts in the field,” Though there has been a steady pro- one-sided views.”
Usually, each PCB designer works gress in the level of engagement Industry and educational institutes
as part of a team whose members are between academia and industry, still should work together to identify and
responsible for different portions of the there is a lot to be done suggest indus- train employable graduates in this
design. With large, complex boards, try experts. Industries need to come field, as there is a tremendous need for
several designers can be assigned to forward and set up labs (with respect to such niche activity. “PCB designing
each board and each person made DSP, FPGA, wireless technologies, EDA is a stable industry as development
responsible for a different set of func- tools) for engineering colleges, which never ceases and growth is assured
tions. Even though a designer works requires investment both in terms of at the rate of more than 20% if the
independently, the team usually com- engineering resources as well material performance is excellent and there is a
municates through frequent meetings (cost of development kits, tools). Kumar proven track record,” believes Satish. 
and thorough documentation. There- says, “But, at the same time, engineer-
fore each designer is expected to com- ing colleges should be willing to accom- The author is a senior technical correspondent
municate ideas verbally and explain modate industry-sponsored courses as at EFY

84 August 2014 | Electronics For You www.efymag.com


test & Measurement

What’s New in In-Circuit Testing


In-circuit testers are transforming into all-in-one electrical test controllers. The latest ICTs
can be used for not only manufacturing defects but also to test functional failures, and
even parametric testing
Pankaj V. have different forms of ICT including automatic press for PCB testing along
automated probing, optical inspection with large automated ICT systems.

I
n-circuit testers (ICTs) have be- and boundary scan combined with However, all these systems contribute
come more versatile and efficient functional testing of circuit assemblies. to an inefficient use of factory space and
as these now come loaded with Let us take a look at the latest low machine utilisation due to size of
additional electrical test capabilities changes in ICT systems, and what they conveyors and speed of travel. Moreo-
and functionalities. The most capable deliver to the users. ver, the additional cost of moving the
ones have in-circuit test, boundary product from one equipment to another
scan, functional test as well as pro- Small-footprint automated is always a concern.
gramming techniques integrated into systems moving to ‘zero’ The newer inline ICT systems intro-
a single platform.
footprint duced last year come with small foot-
With the introduction of zero-footprint print and there is no manual handling
What drove these changes designs incorporating multi-core test ca- involved. You can integrate your ICT
The inability of any single test meth- pability combined with automated ma- into the assembly line and there is no
odology to completely test circuit as- terial handling, the latest inline systems need of any operator handling.
semblies is one reason. In addition, the have taken a step forward in reduction The small footprints in inline systems
constant drive from circuit assemblers in the cost of tests. These systems are are realised by using compact test heads
to reduce test costs is driving tradi- a boon to manufacturers that want to relocated closer to the device under test
tional ICT systems to take the shape of increase their capability but do not have (DUT). This enables ICT to fit easily
more holistic test systems. the additional real estate to do so. within the narrowest automated lines,
Newer ICT systems can be better The industry’s previous solution without the need for any additive storage
described as generic all-in-one electri- to this has been use of many discrete bay or incremental factory space, thus
cal test controllers rather than just ICT automation methods including robotic saving additional cost as well as labour.
systems. This is because many of these helps, automatic probes and semi- Teradyne’s TestStation Multi-Site
Inline ICT system uses a
Latest ICT Solutions novel ‘zero-footprint’ test
head design, which fits
Module Manufacturer Key features
entirely within the narrow-
Teststation Teradyne • ‘Zero-footprint’ design using up to 70% less factory space and power provisioning
est automations. Teradyne
Multi-Site • Delivers full parallel test of multiple boards
• Equivalent productivity of two or more conventional MDA/ICT systems also has offline counter-
QTouch QmaxTest • Able to probe 2 test points as close as 20 mils/500 microns with unique angular probing
parts with sub 1 m2 foot-
1248 • Learn and compare VI curve including Automatic ‘best fit curve’ print and 2560 test-points
• Electrical measurements of components capability which help PCB
TR5001T Test & • Compact and lightweight full-featured ICT solution manufacturers free up fac-
SII TINY Research India • Parallel testing using multiple USB-connected units tory space.
Pvt Ltd • Programmable DUT power supplies Agilent’s i1000D ICT
Focus Kyoritsu • Fastest manufacturing defect analyser (MDA) system is another small-
2000 Electric India • Ultra-advanced solid-state switching technology footprint design that uni-
Pvt Ltd • Easy maintenance
fies offline and inline sys-
Flying Acculogic • Full-function double-sided system
tems onto the same design.
Scorpion • Programmable probe angle +6º to -6º degrees
FLS980Dxi • Closed-loop AccuFast drive system with ±0.1 micron resolution Agilent offers easy up-
grades to convert offline to
Flying Spea • Manual + automated + in-line board loading combined into the same system
Probe S2 • Highest measurement performance and accuracy (0.1pF) inline systems so you can
• 4x parallel fast on-board programming re-use the same system.
Medalist Agilent • Small-footprint’ design unifying offline and inline systems Spea’s 3030 system is
i1000D • Low-cost fixturing requirements and superior signal quality another true multi-core
• Control path for board alignment verification ensuring board safety tester offering up to 4x

86 August 2014 | Electronics For You www.efymag.com


test & Measurement
throughput. The true per pin archi- gies with IC packages like BGA
Key advantages of integrated
tecture in this system makes all the ball grid array (BGA) has made
analogue and digital resources always it difficult to directly access the
boundary scan
available on each system channel. pins using the traditional ‘bed  Extended test channel. Taking an example, if you have
a 50-pin device, you can drive the boundary scan devices
of nails’ tester.
Multi-core testing and through the JTAG ports, which are only five-pin ports, and
To solve this, ICT systems the 50-pin device now becomes your extended test channel.
higher throughput now integrate multiple test  Bi-directional testing. Apar t from the forward
With the increased competition and methods, where some points direction, you can also test in the reverse direction, that
demanding markets, it is certain that make contact through bed of is, from the edge connector till the boundary scan device.
PCB OEMs and the other electronic nails and the others use edge
manufacturing services need to boost connectors or JTAG ports or
their throughput and yield. in-circuit emulators, thus us-
Design for testability (DFT)
“In India, labour costs are increas- ing three or four test methods According to the experts, selection of a suitable ICT
system for your product depends upon the type of
ing day by day and the cost of space in parallel. your product. A design should have some testability
has also increased over the last few Ganapathy from QmaxTest associated with it. DFT adds certain testability features to
years. So, if you use one operator, one says, “You should not depend the product design, making it easier to develop and apply
fixture, one PC, you can save your cost too much on one test method- manufacturing tests for the designed hardware.
Ravi explains, “We study what DFT the board is
as well as space. And mathematically ology or a particular approach. having. For example, it can be a network board or a
speaking, previously we were having Integrated ICT solutions are communication board. But first we have to study what
one tester and one fixture but now a boon. Combinational ap- kind of components are used, and whether there is any
we are having two testers or more in proach has an advantage of DFT or not. If it does not have DFT, we have to make
the analysis and then ask the design team to get that
one fixture, thus the throughput is two or more techniques so that assembly ready for testing. If there is no DFT then no
increased by at least two times,” says yield is more and efficiency is testing can be done.”
Ravi Richaria, manager sales & service increased.”
support, Test & Research India Pvt Ltd. TR5001T SII TINY from Test & nents on the circuit board, reduces the
The newer parallel and multi-core Research India is the compact version amount of wiring while keeping similar
testing architectures available from with just 640 test points but it supports test coverage. Apart from the vector-less
vendors solve this problem. These extended coverage with boundary scan testing you can also perform on-board
parallel test architecture ICT systems in a compact and affordable solution. programming of the components using
deliver true multi-core test capabilities This desktop ICT offers parallel testing JTAG ports.
to test multiple units concurrently, using multiple USB-connected units, High-density channel cards with hy-
thereby eliminating test time bottle- audio analyser and data acquisition brid test points. But now we have single
necks and increasing your testing pro- modules. integrated systems with high-density
ductivity as compared to the previous Vector-less testing with JTAG channel cards, combining various test
ICT systems. Using the multi-core test boundary scan. JTAG allows vector-less flows into a single, full-test performance
systems minimises your system size testing of the PCBs using only the five insertion. These can dramatically reduce
and cost as these utilise common cool- universal end ports to test these compo- your production test times, recurring
ing, power and other infrastructural nents. So, instead of having the higher test costs and improve time to market
elements. In addition to system size number of test points you can test those significantly.
and density, smaller physical configu- components with those five points. The new LX2 system from Teradyne
rations and short signal paths help to Assemblies are getting more com- having 128 channel cards can test com-
deliver high parallel test efficiency. plex day by day; you cannot have the plex boards which require up to 15,360
test point on each and every point. hybrid test points in a single insertion.
Integrated test Moreover, all the complex components It has full analogue, digital, boundary
methodologies in the latest PCBs are boundary-scan scan and in-system programming ca-
Testing of current complex circuit enabled. In this context, methods like pability. Each 128HD card delivers 512
boards requires separate analogue, dig- JTAG boundary scan make it more hybrid test pins, doubling test system
ital and other test workflows. So each convenient to access the I/O pins of pin counts of the existing systems.
test workflow accounts for individual the JTAG-compliant ICs present on the Parametric testing. Parametric
test systems, multiple test fixtures, and circuit board. measurement units (PMUs) are inte-
separate operators. As circuit boards Even if you have a multiple chain grated with the latest ICT systems. Usu-
become more advanced, the traditional of components that are boundary-scan ally these come with 4 PMUs, capable
ICT technologies are becoming less enabled, these can be tested all togeth- of measuring voltage and current with
effective in achieving reliable test cov- er in one chain. This ability to daisy respect to reference current and voltage,
erage. The advent of SMT IC technolo- chain all the JTAG-compliant compo- respectively. This makes them very use-

www.efymag.com Electronics For You | August 2014 87


test & Measurement

Major contributors to this article and how many failed, and have all the
relevant reports of yield rate or efficiency.
For quick debugging and diagnos-
tics, where you want to quickly test any
particular area of the PCB, software
allows you to perform these localised
tests without writing any test sequence.
Arun Rajanna Ganapathy Ravi Richharia Raviteja S. Datta T. Anand
system and Santhanam manager sales & Chivukula Chowdhury co-founder, Knewron So, if you want to test any particular IC
application engineer, manager training, service support, Test technical marketing managing director,
electronic QmaxTest & Research India rngineer, National DVS Group or a few ICs or any other component,
measurement,
Agilent Technologies
Pvt Ltd Instruments
you can just make interface for the de-
vice under test using interactive GUIs
ferent angles, thereby allowing and perform the required tests.
What to look for? you to go very close to the ad- Drawback. The only drawback of
Your test system should be based on open measurement jacent pins and increasing the the ICT software tools is that they are
platforms which have the following characteristics: testing accuracy. unique and proprietary for each system.
 Wide I/O connectivity options for integrating multiple
QTouch 1248 Flying Prob- Ganapathy of QmaxTest says, “Every
test techniques like Flying Probe ICT, Boundary Scan,
Optical Inspection & Functional Test into one system. er from QmaxTest is based on tester has its own driver and capabilities,
 Modularity to meet the ever-changing test requirements the technology of hands-free and so every tester should be directly
 Open standards for third-party connectivity probing which can probe both sequenced with a set of instructions. If
 High channel count for probing high-component- sides of the board due to its someone is thinking of developing a soft-
density circuit card assemblies (CCAs)
 Efficient test management software for increased vertical design. It provides ware, they can see the software function
throughput and test reuse scalability from one to eight and develop one but, however, when
probes with a maximum of you buy any ICT system, the proprietary
ful for analogy testing as well. Since four probes on each side of the board. software only will work.”
these are integrated in the same digital Apart from X, Y and Z axes, probes can
platform, you are able to effectively move in theta direction up to an angle Life of an ICT system
test digital, mixed logic, analogue or of 36 degrees. Testing at component level will remain
mixed-signal assemblies. Acculogic’s Flying Scorpion FLS- for years, but with technological advance-
Integrated intelligence. Integrated 980Dxi offers programmable probe ments these components are getting
intelligence is taking ICT to a whole angles of +6º to -6º with ±0.1 micron smaller and making the circuits more
new level. There are learn and compare resolution for testing. and more complex. These advancements
features included where the system have caused older techniques to fail, and
learns from the golden board and then Software Help will continue to do so with the coming
compares the results. Also, some can With the latest software tools, appli- systems as well. Is there a solution?
learn from past test results and perform cation engineer’s job has been totally Ganapathy explains, “An impor-
a few additional tests, if needed, to pro- reduced. With graphical user interface tant consideration while selecting any
duce useful and comprehensive reports. (GUI), you perform all the tests in a solution should be the number of test
graphical way. There is no need to points and the associated scalability. A
Increased precision with write codes for complex circuits. The manufacturer should first analyse how
rotational movement of GUI provides flexibility to the system many board types are to be tested, and
flying probes and assists test environments for dif- how many maximum test points are
The robotic testers have added a lot of ferent production cycles. required, and then, finally, what scal-
automation. These testers, or the flying You can also define your own test ability is available with the solution.”
probes or the automated probes in ICT program by creating different steps He adds, “Today you might not
systems, can go as close as 20 mils/500 that can be sequenced in an automated require a certain number of test points,
microns between two pins. Complex sequence. You can give your own con- but at least the equipment should have
PCBs sometimes have components ditions and put conditional jumping the capability to add more in future
that are soldered at certain angles to between different steps. For example, if when there is a requirement. For these
the PCB plane. So, for high accuracy, a particular test is passed then jump to a reasons there are more of open archi-
the probe should also be able to move specific step, otherwise to the other one. tecture systems coming up, so that as
at an angle. Also, you can protect your test the requirement increases you are able
Previously probes could move only conditions with passwords and ensure to increase the channel capacity or add
in x-y direction, but now systems include another user cannot change them; he new test methodologies as well.” 
range expansion rotational movement can only run the test. You can maintain a
where you can rotate the probe at dif- record of how many boards were tested The author is a technical correspondent at EFY

88 August 2014 | Electronics For You www.efymag.com


dIy: project

Sequential Tilt-Motion Lock


Rai
Abhijeet

Akhil Kaushik board (Board1), accelerometer module with an AC-to-DC adaptor or battery to
(ACC.1), solenoid lock/electric strike get started. The microcontroller on the

H
ere is a project for locking and and a few other components. board is programmed using Arduino
unlocking with a tilt sensor by Arduino Uno board. Arduino is an programming language and Arduino
tilting it in a defined sequence. open source electronics prototyping development environment.
It uses an accelerometer module to platform based on flexible, easy-to-use Pins A0, A1, A2, A3, A4 and A5 of
detect the tilt motion. If the sequence hardware and software. It is intended Board1 are connected to pins ST, Z-axis,
matches with the predefined motion for artists, designers, hobbyists and Y-axis, X-axis, GND and Vcc of the ac-
sequence, the lock opens. You can build anyone interested in creating interac- celerometer module, respectively. Pin
this lock for a briefcase, ballot box, tive objects or environments. 10 of Board1 is connected to solenoid
portable cashbox or even as a door-lock Arduino Uno is a board based on driver transistor through which the
using suitable mechanical arrangement. ATmega328 microcontroller. It con- solenoid lock is connected.
sists of 14 digital input/output pins, Accelerometer module. An acceler-
Circuit and working six analogue inputs, a USB connection ometer is an electromechanical device
Fig. 1 shows circuit diagram of the for programming the on-board micro- that measures acceleration. The accel-
sequential tilt-motion lock. The cir- controller, power jack, an ICSP header erometer module used here is based on
cuit is built around Arduino Uno and a reset button. It is operated with ADXL335 triple-axis accelerometer from
a 16MHz crystal oscillator and contains Analog Devices. The sensor has a full
Parts List everything needed to support the mi- sensing range of ±3g.
Semiconductors: crocontroller. It is very easy to use as The microcontroller in Board1 re-
BOARD1 - Arduino Uno board
ACC.1 - ADXL335 3-axis the user simply needs to connect it to a ceives data at pins A1, A2 and A3 for z, y
accelerometer module computer with a USB cable, or power it and x axes, respectively, from the accel-
LED1 - 5mm LED
T1 - BC548 npn transistor
erometer. This data is continuously com-
pared by Board1 with predefined values
D1 - 1N4007 rectifier diode
Resistors (all ¼-watt, ±5% carbon):
Test Points for each axis. If the received sequence
R1, R2 - 1-kilo-ohm Test point Details matches, Board1 unlocks the lock, which
Miscellaneous:
CON1, CON2 - 2-pin terminal connector TP0 0V is either a solenoid lock or any other
S1 - On/off switch TP1 12V suitable magnetic lock. (We used a 12V
BATT.1 - 12V battery electric strike for testing.) Glowing of
- 12V electric strike (solenoid TP2 High
lock) TP3 Low LED1 indicates that the lock is open.

Software
The software for this project is
TP1
BATT.1
written in Arduino programming
12V POWER USB language. The Arduino Uno is
INPUT
programmed using Arduino IDE
SCL
SDA TP0
DRIVER AREF
software. ATmega328 on Ardui-
S1 GND
RST 13
R1
no Uno comes with a boot loader
ARDUINO

ON/OFF 3.3V 12 GND


ACC.1 5V 11 1K that allows you to upload new
GND 10 T1
ADXL335
GND 9 BC548
code to it without the use of ex-
Vin 8
ternal hardware programmer. It
ATMEGA328

ACCELEROMETER
CON1 communicates using the STK500
7
Vcc R2
protocol. You can also bypass
GND X Y Z ST
6
DIGITAL

6 5 4 3 2 1
A0 5 1K
A1 4 the boot loader and program the
ANALOG

D1
TP3
A2
A3
3
2
LED1 1N4007 microcontroller through in-cir-
OPEN
A4 TX 1 cuit serial programming (ICSP)
A5 RX 0
TP2 header, but boot loader program-
SOLENOID LOCK ming is quicker and easier. Select
BOARD1
the correct board from ‘Tools →
Fig. 1: Circuit diagram of sequential tilt-motion lock Board’ in Arduino IDE and burn

90 August 2014 | Electronics For You www.efymag.com


dIy: project

efy Note
The source code of this project is
included in this month’s EFY DVD
and is also available for free down-
load at source.efymag.com

marked on the accelerometer module.


The default tilt sequence of this circuit
defined in the source code is -X, -Y, -X,
+Y, -Y. If the tilt sequence is correct,
you can observe the glowing of an in-
built LED (not shown here) connected
to pin 13 of Arduino board. If you want
to change the sequence, change it in the
source code, recompile the program and
burn into the microcontroller.
Fig. 2: An actual-size PCB layout for the
Fig. 3: Component layout for the PCB To open the lock, switch on S1 and
sequential tilt-motion lock tilt the circuit sequentially, as men-
the circuit on the recommended PCB to tioned above, within one minute. If
the program (sketch) through standard minimize assembly errors. correct action is not completed within
USB port in the computer. To test the circuit for proper func- one minute, you need to repeat the tilt
tioning, switch on S1 and verify correct sequence from the start to unlock it. To
Construction and testing 12V supply for the circuit at TP1 with close the lock, just switch off the circuit
An actual-size (Arduino shield type), respect to TP0. using on/off switch S1. 
single-side PCB for the sequential tilt- The neutral position of accelerom- The author is a third-year student of B.Tech (CSE)
motion lock is shown in Fig. 2 and its eter module is parallel to the earth’s at the Institute of Engineering and Technology, Alwar
component layout in Fig. 3. Assemble surface. The +Y and +X axes are (Rajasthan)

www.efymag.com Electronics For You | August 2014 91


dIy: project

Mini Rechargeable Power Supply


Abhishek Kumar battery. Even if the battery is fully
discharged, it can power the load from

P
resented here is a robust, com- external power source without disturb- Rai
Abhijeet
pact and hand-held power sup- ing the output regulation and charging
ply that delivers 9.2V and 5V up of the battery.
to 1A (approx.) and 3.3V up to 500mA. Generally, a power supply derives
It also includes a female A-type USB power from the 230V AC mains and adaptor, USB port or solar panel. This
connector so you can power and then, using step-down transformer DC input goes to the battery charge
charge other equipment such as mobile along with circuitry for rectification, management circuit to which a 3.7V
phones. Four white LEDs are included filtering and regulation, provides the single-cell Li-ion battery is connected.
to enable its use as a torch-light as well. regulated DC output. The disadvan- It is to be noted here that Li-ion bat-
The circuit uses a single recharge- tage is that such power supplies are big teries are very sensitive to charging
able 3.7V Li-ion battery pack (normally and not so portable. The one described voltage and current, and need a stable
charging source. Directly charging
Li-ion batteries using any source may
reduce the capacity of the battery and
degrade it soon.
Battery management. At the heart
of the Li-ion battery charge manage-
ment circuit is the Li-ion battery charg-
er IC BQ24074 from Texas Instruments.
It is an integrated Li-ion linear charger
and system power path management
device for space-limited portable appli-
cations. The device operates off either
a USB port or a DC adaptor and sup-
Fig. 1: Author’s prototype ports programmable charge currents
up to 1.5A. That is, we can charge up
to 3000mAh batteries at 0.5C, where C
is the battery’s capacity.
The BQ24074 features dynamic
power path management (DPPM) that
powers the system while simultane-
ously and independently charging the
battery. It supports reverse current,
short circuit and thermal protection.
Fig. 2: Block diagram of the mini rechargeable power supply Its input voltage supports unregulated
adaptors.
used in mobile phones and MP3 play- here is a battery-based portable power The battery is charged in three
ers). It uses dedicated Li-ion charging supply. The author’s prototype is phases: conditioning, constant cur-
IC which monitors undercharge and shown in Fig. 1. rent and constant voltage. In all these
overcharge conditions to safely charge phases, an internal control loop moni-
the Li-ion battery pack. The circuit not Circuit and working tors the IC junction temperature and
only indicates the charging status but The block diagram of the mini re- reduces the charge current if the inter-
also shuts off the load when the battery chargeable power supply is shown in nal temperature threshold is exceeded.
is discharged to a certain level. Fig. 2 and its circuit diagram in Fig. 3. All the current settings like charging,
The power supply is so versatile Charging input source. The charg- input-limiting and termination for the
that it accepts input from various ing input source for the power supply IC are programmable by selecting the
power sources like DC wall adaptors, can be anything from 5V to 10V, which right resistor values at appropriate
USB or a solar panel to charge the 3.7V can be harnessed using a DC power pins.

92 August 2014 | Electronics For You www.efymag.com


dIy: project
CON3
R1 R2 4 GND
220E 220E C7 3
R7 2
S1 R9 0.1u
MAIN 1M 1 +5V
LED2 R8 1M
LED1 SWITCH 390K USB−A
VALID CHARGING 1 8 IC5 3
TP1 +IN +V 1
SOURCE 7 TP2 R15
9 11
2 IC2 REF 7 220E UA78M33
−IN
PGOOD CHG OUT
DC JACK C1 13 10 LMP7300 2
C6
IN OUT 3 HYSTP 6
22u GND
5 − 10V 0.1u TP5
25V 8 Vss 5 LED7
EN2 R10 4 5
CON1 IC1 OUT HYSTN
1 C2 IC6
TS EN1 6 4.7K 1 3
LOW C8 = 0.1u
2
BQ24074 47u
R11 7805
BAT 14 BATT.
TMR 25V
C4 2 CON4
3 C3 10n C8
BAT 4 8.2K 4 +3.3V
CE C5 TP6
ITERM ILIM ISET R12 0.1u 3 +5V
TP3 1
GND R1/C1
6 2 +9.2V
15 12 16 1
IC3 470K 100u ,25V
GND
TS + − 2 VOUT ON/OFF 5
R4 R5 R6
TPS27082L OUTPUT
R3 6K 3
VOUT VIN
4 S2
3.7V 10K TP4 LED SWITCH R14
LI−ION
68E
BATTERY CON2 1W
1 4
GND IC4 VO

R5, R6 = 1.5K PTN04050C R13


THERMISTOR 2 3
VI VOADJUST
BYPASS TP0
4.2K LED3 LED4 LED5 LED6
JUMPER
GND
LED3−LED6 = WHITE LED
Fig. 3: Circuit diagram of the mini rechargeable power supply

The charging input source is con- Since 1200mAh battery is used


nected to pins 13 (IN) and 8 (Vss) of in this power supply project, let us
Test Points
IC1 through the DC jack. Most of the go through the designing steps for Test point Details
Li-ion battery packs have at least three BQ24074 IC. First, for setting the charg- TP0 0V
pins—positive, negative and NTC ther- ing current at 0.5C, we have to find the TP1 Charging source voltage
mistor out. The NTC thermistor is built value of Rset that will be connected at TP2 4.4V if charging source is connected
into the battery pack itself to monitor pin 16 (Iset) to ground. For 1200mAh of TP3 Battery voltage
the battery temperature. The three pins battery capacity, 1C=1200mA and thus
TP4 9.2V
of the Li-ion battery are connected to 0.5C =600mA. So, for Iset =0.5C=600mA,
TP5 3.3V
the TS (pin 1), BAT (pins 2 and 3) and the formula for calculating Rset (as per
TP6 5V
ground pin of IC1. datasheet of BQ24074) is:
The IC BQ24074 supports only Rset = (Kset / Iset ) 0.03=6-kilo-ohm (which is resistor R4
batteries with 10-kilo-ohm thermis- Value of Kset = 890 in the circuit).
tors. If your battery does not have Thus, Rset = (890/600mA) = 1.48-ki- Now let us calculate the Rlim value
this thermistor option, you attach a lo-ohm at pin 12 of IC1 that will set the maxi-
10-kilo-ohm from ground to pin 1(TS) The value of 1.48-kilo-ohm is not mum input current consumption limit
of IC1 by shorting the thermal bypass a standard value, so we choose the for IC1, which includes the battery
jumper to bypass the thermal monitor- nearest standard value of 1.5-kilo-ohm. charging current plus the current sup-
ing feature. It will set the charging current Iset to plied to the load. We select a nominal
As shown in the circuit (Fig. 3), about 593mA, which is acceptable for value of about 1A for the purpose in
LED1 is connected to pin 7 (PGOOD) the purpose. Thus Rset=1.5-kilo-ohm our project.
which glows if the input charging (which is resistor R6 in the circuit). So, for Ilim = 1A
source is valid and acceptable for charg- For setting the charge termination Rlim = (Klim / Ilim)
ing the battery. LED2 is connected at current at 0.1C = 120mA, we find out Klim = 1610
pin 9 (CHG) which glows to indicate the value of Rterm that is connected from Thus, Rlim = (1610/1 A)=1.610-kilo-
that the battery is in charging mode. pin 15 (Iterm) to ground. The formula ohm
BQ24074 IC works on linear topology, for calculating Rterm (as per datasheet Here, 1.61-kilo-ohm is not a stand-
so a 22µF (C1) electrolytic capacitor at of BQ24074) is: ard value, so we choose the nearest
the input and a 47µF (C2) at the output Rterm = (Iterm x Rset)/0.03 standard value of 1.5-kilo-ohm. It will
is required for stability purpose. Thus R term = (120mA x 1.5k)/ give us Ilim=1.073A, which is accept-

www.efymag.com Electronics For You | August 2014 93


dIy: project
able for the purpose. Thus, Rlim = 1.5k Parts List is open-drain. Resistor R12 and capaci-
(which is resistor R5 in the circuit). Semiconductors: tor C3 in IC3 provide the slew rate of
We can also manipulate the inter- IC1 - BQ24074 Li-ion battery the load switch. The output from IC3
charger and power-path
nal charge timer’s expire values for manager is taken from pins 2 and 3 (Vout) and
IC1 by calculating the value of a resis- IC2 - LMP7300 precision then given to the boost converter sec-
comparator and reference
tor that will be connected from pin 14 IC3 - TPS27082L PFET load switch
tion.
(TMR) to ground. If resistor is not used IC4 - PTN04050C adjustable boost Boost converter. We used PT-
at this pin, it selects the default value converter N04050C (IC4) boost converter module
IC5 - UA78M33 positive-voltage
of 1800 seconds for pre-charge and regulator from Texas instruments. It provides
18,000 seconds for fast charge. We used IC6 - 7805, 5V regulator high-efficiency, step-up voltage con-
LED1, LED2,
the default timer values in this project. LED7 - 5mm LED version for loads of up to 12 watts. It
Here we complete the setup for our LED3-LED6 - 3mm white LED (high is a DC-DC converter that steps up the
intensity)
battery charging circuit. low-voltage DC to a higher-voltage
Resistors (all 1/4-watt, ±5% carbon, unless stated
The output (positive rail) from otherwise): DC. It can take any voltage of 2.95V to
this section is taken from pins 10 and R1, R2, R15 - 220-ohm 5.5V and step up to 9.2V. In fact, the
R3 - 10-kilo-ohm
11 (OUT) of IC1 and given to the next R4 - 6-kilo-ohm boost converter can be configured to a
section via main switch S1. It is this R5, R6 - 1.5-kilo-ohm maximum step-up voltage of 15V but,
R7, R9 - 1-mega-ohm
switch which will be used to switch on R8 - 390-kilo-ohm
in our case, we step it up to 9.2V only,
the power supply. R10 - 4.7-kilo-ohm as that is sufficient for most portable
Battery protection unit. This cir- R11 - 8.2-kilo-ohm power applications.
R12 - 470-kilo-ohm
cuit deploys a low-power comparator R13 - 4.2-kilo-ohm The positive rail taken from the
LMP7300 (IC2) and a 3A PFET load R14 - 68-ohm, 1W previous section goes to pin 2 of IC4.
Capacitors:
switch TPS27082L (IC3) from Texas C1 - 22µF, 25V electrolytic
Resistor R13 sets the output voltage of
Instruments. It is basically an over- C2 - 47µF, 25V electrolytic the converter to 9.2V, which is acces-
discharge or deep-discharge protection C3 - 10nF ceramic disc sible at pin 4 (Vo) of IC4.
C4 - 100µF, 25V electrolytic
circuitry that continuously monitors C5-C8 - 0.1µF ceramic Regulator outputs. The 9.2V from
the battery voltage levels. The battery Miscellaneous: IC4 is given to input pins of positive
S1, S2 - On/off switch
should not be discharged beyond 2.7V. voltage regulators LM7805 (IC6) and
CON1 - 3-pin connector
The over-discharge protection circuit CON2 - 2-pin connector UA78M33 (IC5) to obtain 5V and 3.3V,
not only shuts off the load connected to CON3 - USB A-type connector respectively. Some capacitors are pro-
CON4 - 4-pin connector
it but also alerts the user through LED - DC Jack connector vided at the input and output of these
indication that the battery is exhausted - 3.7V Li-ion battery regulators for stability purposes.
- Shorting jumper
and needs recharging. - Heat sinks for IC5 and IC6 Thus, from a 3.7V Li-ion battery,
Voltage monitor. The LMP7300 is a we get regulated DC output voltages of
combination comparator and reference reference voltage at pin 2, which re- 9.2V, 5V and 3.3V. These three voltages
with ideal specifications for precision sults in output of the comparator go- are routed to an external connector for
threshold detection. The precision ing low, thus stating under-voltage/ the convenience of connecting to your
2.048V reference comes with a 0.25% over-discharge condition. The glow- projects.
maximum error. It is mostly used for ing of LED7 at output pin 4 of IC2 The regulated (but not current-lim-
precision threshold detection, battery indicates the over-discharge or low- ited) 5V also goes to a female USB-A
voltage monitoring and management battery status. type connector so that you can power
system, and zero-crossing detectors. Load switch. IC3 TPS27082L is a and charge most of your USB-powered
The inverting input pin 2 of PFET load switch which switches on if products.
LMP7300 comparator is connected to its pin 5 (on/off) is given voltage great- Torchlight. We have four white
reference voltage pin 7 (REF) while its er than 1V. Pin 5 is directly connected LEDs (LED3 through LED6) connected
non-inverting pin 1 is connected to a to the output pin 4 of LMP7300. So to 9.2V rail through resistor R14 and
potential divider network comprising whenever the battery output rail goes switch S2, serving the function of a
resistors R7 and R8. This potential below 2.8V, the output of LMP7300 torchlight/flashlight. A 68-ohm resis-
divider is so designed that its output goes low, which switches off the load tor (R14) is used as current limiter and
goes low when the input decreases switch. Thus the load connected to this switch S2 is used as on/off switch for
to 2.8V (slightly higher than the 2.7V circuit is disconnected, hence no further the LEDs.
standard, to be on the safe side). discharging of the battery takes place.
When the positive rail (which is Pull-up resistor R11 is provided to Construction and testing
the battery voltage) decreases to 2.8V, turn on the load switch IC3 normally An actual-size, single-side PCB for
the voltage at pin 1 goes lower than because the output of the comparator the mini rechargeable power supply

94 August 2014 | Electronics For You www.efymag.com


dIy: project
them conveniently
for torchlight.
On switching S1
on the power sup-
ply should provide
9.2V, 5V and 3.3V at
the output terminals
(CON4). It is safe to
draw about 800mA
from the 9.2V and
5V terminals while
3.3V terminal is able
to provide 500mA
of current only.
Switch S2 turns on
the torchlight (pro-
Fig. 4: Actual-size PCB layout for the power supply vided switch S1 is
on).
You can con-
nect Li-ion battery
up to 3000mAh ca-
pacity to the cir-
cuit but you have
to recalculate the
current-setting re-
sistors as described
in the previous sec-
tion. When the bat-
tery voltage reaches
below 2.8V, LED7
glows to indicate
the ‘end of capacity’
of the battery and
the loads are auto-
matically turned off.
Fig. 5: Component layout for the PCB To recharge the
battery, you can
circuit is shown Fig. 4 and its compo- connect the circuit to an adaptor pro-
nent layout in Fig. 5. IC1, IC2 and IC3 ducing anywhere from 5V to 10V DC.
are SMD components which are to be You can also charge the battery by
mounted on the solder side of the PCB. connecting it to a solar panel provid-
Suitable heat sinks should be used for ing anywhere from 5V to 10V. If the
IC5 and IC6. Connect the Li-ion battery charge input source is a valid source,
at CON1 and set the thermal bypass green LED1 glows. LED2 glows to in-
jumper at CON2 in the circuit, as ex- dicate that the battery is being charged
plained under ‘battery management’ and goes off after the battery is fully
section. charged. LED2 also flashes at the rate
Check that the voltages at various of 2Hz if the IC’s internal safety timers
points in the circuit are as per test have expired, an error state which in-
point table before powering it for the dicates that your battery is not in good
first time. Enclose the power supply condition. 
circuit in a suitable box. Fix DC jack,
The author is a B.Tech in electronics and
CON1 through CON4, switches S1 and instrumentation. His interests include embedded
S2 appropriately on the box. Fix LED3 systems, software programming and instrumen-
through LED6 such that you can use tation

www.efymag.com Electronics For You | August 2014 95


dIy: circuit

Wireless Door-Opening Alarm s.c. dwiv


edi

Pradeep G. timer and CD4013 ICs. NE555 (IC1)


timer is configured in astable mode to

T
his wireless door-opening alarm generate a frequency of 80 kHz. CMOS battery. To reduce current consump-
works with ultrasonic waves. flip-flop CD4013 (IC2) generates a tion, NE555 may be replaced with 7555
Its transmitter is installed near 40kHz square-wave signal to drive ul- CMOS IC.
the door and the receiver at some trasonic transmitter transducer (TX1). Fig. 2 shows the circuit of receiver
distance. There is no wire connection Reed switch is fitted on the door which uses 40kHz transducer (RX1) at
between the two. When the door is frame and a magnet on the door such the input. The 40kHz signal reaches
opened, the transmitter emits 40kHz that, when the door is closed, the the receiver through RX1. Signal from
ultrasonic signal which sounds an magnet comes very close to the reed transducer RX1 is amplified, rectified
alarm through the receiver. switch, making the reed switch close and filtered. DC voltage obtained is
its contacts. This means, reset pin 4 of given to DC amplifier to drive LED1
Circuit and working IC1 is pulled to ground. NE555 stops
Fig. 1 shows circuit diagram of the oscillation and so there is no output Test Points
transmitter, which employs NE555 from ultrasonic transducer TX1.
Test point Details
W h e n
the door is TP0 0V
C3 C4 opened, the TP1 9V
VR1 TP1 TP2 80 kHz when reed switch is open
20K
R3
100u, 25V 0.1u
magnet moves
5.6K
away from the TP3 40 kHz when reed switch is open
14
R1 7 DIS 6
Vcc
reed switch TP4 40 kHz when reed switch is open
RESET 4 SET1
Q1 2
5.6K 5
D1 FF1 1 CON1 and contacts Across TP5
Q1
6
TH Vcc 8 3 CLK1 R1
9V
of reed switch and TP6 9V -12V
IC1 TP2 4
R2
2
NE555 IC2 open. As a re-
TP3
18K TRI O/P 3
CD4013 sult, NE555 Parts List
8 TX1
1
GND CV
5 SET2 Q2 12
oscillates at 80 Semiconductors:
C2 9
D2 FF2 13 IC1 - NE555 timer
0.01u 11
CLK2 R2
Q2
kHz and the IC2 - CD4013 dual D-type flip-flop
C1
10 GND 7 transducer TX1 D1 - 1N4148 switching diode
RS1 T1 - BC549 npn transistor
330p REED emits 40kHz T2-T4 - BC547 npn transistor
TP4
TP0 SWITCH
TX1 = 40kHz ULTRASONIC signal. LED1 - 5mm LED
TRANSDUCER Transmit- Resistors (all 1/4-watt, ±5% carbon):
R1, R3 - 5.6-kilo-ohm
GND ter can be pow- R2 - 18-kilo-ohm
Fig. 1: Circuit diagram of the transmitter ered from a 9V R4, R8 - 4.7-kilo-ohm
R5 - 470-kilo-ohm
R6, R11, R12 - 1-kilo-ohm
R7, R9 - 22-kilo-ohm
R10 - 100-kilo-ohm
C6 R14 R13, R14 - 680-ohm
R4 VR2 680E R11 R13
100u 680E TP6 VR1 - 20-kilo-ohm preset
4.7K 2.2M 1K
25V VR2 - 2.2-mega-ohm preset
GND PZ1
R8 Capacitors:
PIEZO C1 - 330pF ceramic disk
R5 C5 4.7K
BUZZER C2 - 0.01µF ceramic disk
470K 4.7n LED1
C3 - 100µF, 25V electrolytic
R7 C4 - 0.1µF ceramic disk
22K D1 R9 T3 C8 C5 - 4.7nF ceramic disk
1N4148 22K BC547 100u C6, C8 - 100µF, 25V electrolytic
T1
R6 BC549 25V C7 - 47nF ceramic disk
1K Miscellaneous:
T2 T4
C7 CON2 RS1 - Reed switch (N/O type)
BC547 R12 BC547
R10
47n 9V −12V TX1 - 40kHz ultrasonic transducer
RX1 1K
100K (transmitter)
TP5
RX1 - 40kHz ultrasonic transducer
(receiver)
GND CON1, CON2 - 2-pin terminal connector
RX1 = 40kHZ ULTRASONIC TRANSDUCER RECEIVER PZ1 - Piezo buzzer
- 9V battery
Fig. 2: Circuit diagram of the receiver

96 August 2014 | Electronics For You www.efymag.com


dIy: circuit
After assembling
the transmitter and
receiver units on
two separate PCBs,
enclose them in sep-
arate plastic cases.
When the door
is opened, TX1 emits
Fig. 3: An actual-size PCB layout for the transmitter Fig. 5: An actual-size PCB layout for the receiver 40kHz signal, which
RX1 receives and
activates the buzzer
wirelessly. Trans-
mitter TX1 must be
directed towards
receiver transducer
RX1 for proper func-
tioning. Adjust VR1
in the transmitter
to obtain maximum
Fig. 4: Component layout for transmitter PCB Fig. 6: Component layout for receiver PCB range. The range
was found to be
and buzzer PZ1. Power supply for the transmitter is shown in Fig. 3 and its around 1 metre. In case of any prob-
circuit can be from 9V to 12V. component layout in Fig. 4. Similarly, lem, verify voltages at the test points
an actual-size, single-side PCB layout given in the table. 
Construction and testing for the receiver is shown in Fig. 5 and
An actual-size, single-side PCB for the its component layout in Fig. 6. The author is a regular contributor to EFY

www.efymag.com Electronics For You | August 2014 97


dIy: circuit

Battery-Discharge Measurement Circuit


Bhaskar Pandey (battery under test) and controls the
power supply for the analogue clock.

B
edi
attery-life measurement for When the BUT voltage falls below s.c. dwiv
a portable system is a time- the threshold value set by VR1, IC1’s
consuming task and many output becomes low, which turns off
methods used for it do not give reliable MOSFET IRF1. This means, power sup-
results. Presented here is a circuit using ply for the analogue clock is cut off and Parts List
which you can measure the battery-life so the clock stops running. The reading Semiconductors:
IC1 - MAX921 single-/dual-
very easily. Here, an analogue clock on the clock at this point gives the dis- supply comparator
tracks the discharge time of the bat- charge time of the BUT, provided you IRF1 - VN0300L MOSFET
tery used in battery-powered portable had set the clock to 12:00 before testing Resistor:
VR1 - 100-kilo-ohm potmeter
devices. started. The circuit can test 2.5V to 11V
Capacitor:
batteries. C1 - 0.1µF ceramic disk
Circuit and working Miscellaneous:
The circuit for battery-discharge meas- Construction and testing CON1, CON3 - 2-pin terminal connector
CON2 - 2-pin connector
urement is shown in Fig. 1. It is built An actual-size, single-side PCB for - 1.5V AA-size battery
using low-power single-/dual-supply the circuit is shown in Fig. 2 and its - Analogue clock
comparator MAX921 (IC1), MOSFET component layout in Fig. 3. After as-
VN0300L (IRF1), an analogue clock sembling the circuit on PCB, enclose
and a few other components. it in a suitable plastic box. Connect Test Points
IC1 monitors the life of the BUT positive terminal of the analogue clock Test point Details
TP0 0V
ANALOGUE CLOCK TP1 Voltage of the battery under test
C1 TP2 High to low at threshold setting
CON1 0.1u TP1 using VR1
CON2
BUT*
+
7 − to positive terminal of a 1.5V AA-size
V+ VR1 CON3 battery and negative terminal to the
6 REF 3 100K 1.5V drain of MOSFET IRF1. Before using
IN+ AA SIZE
5 IC1 the circuit, verify that voltages at the
HYST D
MAX921 test points are as per table.
4 IRF1
IN− OUT
8
For setting the threshold voltage,
TP2 VN0300L
you need a variable DC power supply
V− GND G
TP0 2 1
at CON1. For example, to measure the
S discharge time of a 6V battery (BUT),
first decide its minimum threshold
BUT* = BATTERY UNDER TEST GND voltage, say 4.5V. Connect variable
supply to CON1 and set it to 4.5V.
Fig. 1: Circuit diagram for battery-discharge measurement Vary VR1 till the clock stops running.
Now, remove the variable power sup-
ply, set the clock to 12:00 and connect
the 6V battery at CON1. Connect the
load across the battery. As the battery
power is being consumed by the load,
voltage level begins to drop. When
BUT voltage drops below 4.5V, the
clock stops running. The time shown
on the analogue clock at this point is
the discharge time. 

Fig. 2: An actual-size PCB pattern for the circuit Fig. 3: Component layout for the PCB The author is an electronics hobbyist

98 August 2014 | Electronics For You www.efymag.com


dIy: circuit

Perfume Vaporiser Adaptor s.c. dwiv


edi

T.K. Hareendran heating element and thereby the rate


of vaporisation and level of fragrance

A
n electric perfume vaporiser delivery. As a rule, the fragrance in the TRIAC1. This allows the vaporiser
slowly vaporises liquid per- bottle should last for at least 30 days. to connect to 230V supply through
fume in a bottle using an elec- Fig. 1 shows the author’s prototype. TRIAC1, thus allowing the heating ele-
trical heating module. A wick trans- ment to heat up.
ports the liquid from the bottle into the Circuit and working The 500-kilo-ohm potentiometer
heating zone on top by capillary action. Fig. 2 shows the circuit diagram of (VR1) provides a smooth continuous
The heating is done at a temperature perfume vaporiser adaptor. It is an control of power to the heating element
maintained within a narrow range suit- inexpensive solid-state heat controlling of the vaporiser. By varying it, you can
able for the perfume, so that its release circuit built around the commonly- get different levels of fragrance output.
is neither too fast nor too slow. available triac BT139 (TRIAC1). Working of the circuit is simple.
This circuit helps in controlling the Phase control is one of the most On closing switch S1 the 3mm red
temperature of the liquid vaporiser’s common forms of triac control. A basic LED1 glows, indicating that circuit is
phase-control circuit includes resistors, switched on. Turning VR1 increases or
Parts List
a capacitor and a diac. Resistors R1 and decreases the release of perfume.
Semiconductors:
TRIAC1 - BT136 triac
R2, potentiometer VR1 and capacitor This circuit can also be used as an
DIAC1 - DB3 diac C1 provide a phase shifted AC signal adaptor for insect repellent vaporisers,
D1 - 1N4007 rectifier diode to diac DB3 (DIAC1). When the voltage air fresheners, etc.
LED1 - 3mm red LED
on C1 exceeds the break-over voltage
Resistors (all 1/4-watt, ±5% carbon):
R1 - 10-kilo-ohm of DB3, it breaks down and triggers Construction and testing
R2 - 2.2-mega-ohm An actual-size, single-side PCB for the
VR1 - 500-kilo-ohm potentiometer
perfume vaporiser adaptor is shown
Capacitor:
C1 - 150nF, 400V polyester
Test Points in Fig. 3 and its component layout in
Miscellaneous: Test point Details Fig. 4. After assembling the circuit on a
CON1 - 2-pin terminal connector
CON2 - 2-pin connector Across TP0 and TP1 230V AC PCB, enclose it in a suitable plastic case.
S1 - On/off switch Across TP2 and TP3 Output depends on Connect the two wires from CON2 to
position of VR1 the 2-pin plug of the vaporiser.
Across TP0 and TP4 Around 1.1V AC Fix VR1 on the front side of the
cabinet and connect it to PCB using
wires. Fix 2-pin connectors for
power supply and the vaporiser.
A small heat sink should be
provided for TRIAC1. But the
heat sink should not be allowed to
come in contact with any external
metallic object.
Fig. 1: Author’s prototype Before connecting the vaporiser
to the circuit, verify that the volt-
Fig. 3: An actual-size PCB for perfume vaporiser
ages at various test points are as
adaptor per table.
R1
CON2
TP3 10K
R2
2.2M
Caution. Since the circuit is
VAPORISER VR1
500K directly operated from 230V AC
TP2 TRIAC1 MT2
S1 BT136
mains, only experienced persons
ON/OFF MT1 G
C1
should assemble it. To avoid lethal
SWITCH DIAC1
TP1 DB3 150n shock, take necessary precautions
TP4 400V
L CON1 while handling the AC mains volt-
230V AC
N
POWER IN
TP0
D1 LED1
age. 
1N4007 POWER

The author is a freelance writer and circuits


Fig. 2: Perfume vaporiser adaptor circuit Fig. 4: Component layout for the PCB designer

www.efymag.com Electronics For You | August 2014 99


dIy: circuit

Speed Controller s.c. dwiv


edi
ally between 3% and 15% of the resist-
ance of the thermistors at +25°C.

for Small Cooling Fans


LED1 is used as power on/off indi-
cator for the circuit. LED2 indicates the
speed of rotation of the fan. If speed of
Petre Tzv Petrov their power dissipation. the motor is high, LED2 glows brightly,
Usually you cannot find low-cost and vice versa. Diode D1 is used to pre-

S
mall cooling fans are used in some NTCs with enough power dissipation. vent back EMF when power supply is
equipment for cooling semicon- Therefore four of them in parallel are removed.
ductor devices. The circuit given used here. This way power dissipa- Connector CON1 is used for the
here is of a simple automatic speed con- tion and self-heating of the NTCs are power supply. It is better to have power
troller for a 12V, 0.6W (or 1.2W) cooling reduced. It is better to use NTCs with supply 10 to 25% higher than the nomi-
fan that increases the fan’s speed when tolerance of ±2%. The NTCLE100E3 nal working voltage of the fan to com-
temperature rises, and vice versa. are available with nominal values of pensate for the voltage drop across the
3.3-ohm to 470-kilo-ohm and have resistors and the thermistors.
Circuit and working maximum power dissipation of 0.5W Voltage drop across resistor R8 is
Fig. 1 shows circuit diagram of the speed at +55°C. proportional to the current in the motor.
controller for a small cooling fan. Resis- Table I shows easily-available NTC Connector CON2 is used to connect a
tor R1 limits the initial current for the thermistors that can be used in the digital voltmeter to measure the voltage
motor and lowers the speed of rotation, circuit. The drop.
if needed. The temperature control is Table II resistors R2
done with one or more NTC (negative Test Points through R5 Construction and testing
temperature coefficient) thermistors con- Test point Details are equalisa- An actual-size, single-side PCB for the
nected in series with the electrical motor. tion and lim- circuit is shown in Fig. 2 and its compo-
TP0 0V
The number of thermistors depends on iting resistors. nent layout in Fig. 3. After assembling
TP1 12V
These resis- the circuit on a PCB, enclose it in a suit-
Table I TP2 0.08V to 1.35V
tors are usu- able plastic box.
Different Thermistors with Fix all the four NTC thermis-
Resistance Values tors (NTC1 through NTC4) at
T°C NTC NTC NTC NTC
R1
390E
NTC1 NTC2 NTC3 NTC4
TP1 appropriate locations, within the
470E 470E 470E 470E
(ohm) (ohm) (ohm) (ohm) equipment whose heat is to be
25 150 220 330 470 R2 R3 R4 R5 R6 C1 dissipated, for temperature sens-
10E 10E 10E 1K 100u
10E
35V ing. On front panel of the speed
30 123.7 181.5 272.2 387.7
controller fix switch S1 for power
40 85.54 125.5 188.2 268.0 R7 +
1K CON1
on/off, LED1 for power on/off
50 60.30 88.84 132.7 188.9 M1 D1 12V −
LED2 1N4007 15V _ indication and LED2 for fan-
60 43.28 63.48 95.23 135.6 FAN ON
speed indication. Before using
70 31.60 46.35 69.52 99.01
+ TP2 LED1
the circuit, verify that voltages at
80 23.43 34.37 51.56 73.43 R8
CON2
1E, 1W
POWER TP0 various points in the circuit are as
VOLTMETER
90 17.63 25.86 38.80 55.26 _
per Table II.
GND
100 13.45 19.73 29.59 42.15 M1 = COOLING FAN
EFY note. All the four thermis-
Fig. 1: Circuit diagram of the speed controller tors should be of same type. 
Parts List
Semiconductors: The author was
D1 - 1N4007 rectifier diode a researcher and
LED1, LED2 - 5mm LED assistant profes-
Resistors (all 1/4-watt, ±5% carbon, unless stated
sor in Technical
otherwise):
R1 - 390-ohm University of So-
R2-R5 - 10-ohm fia (Bulgaria) and
R6, R7 - 1-kilo-ohm exper t-lecturer
R8 - 1-ohm, 1W in OFPPT (Casa-
Capacitor: blanca), Kingdom
C1 - 100µF, 35V electrolytic
of Morocco. Now
Miscellaneous:
CON1 - 2-pin terminal connector
he is working as
CON2 - 2-pin connector an electronics
NTC1-NTC4 - 470-ohm, NTC thermistor engineer in the
M1 - 12V, 0.6W (or 1.2W) cooling Fig. 2: An actual-size PCB for the Fig. 3: Component layout for the PCB private sector
fan speed controller Bulgaria

100 August 2014 | Electronics For You www.efymag.com


diy: tips & technique

Oscilloscope as an Image Viewer vivek panc


habhaiya

Vineet Nayak loscope. Fig. 1 shows ‘EFY’ image on The code is written such that it ac-
the oscilloscope. cepts byte codes in pages and columns

C
athode ray oscilloscope (CRO) format. The byte codes of the image
is a versatile laboratory instru- Circuit and working is in the intel[] array which is stored
ment which is used to display, The heart of the project is ATmega16 in Flash memory. The myte[] array
measure and analyse electrical signals. microcontroller—a low-power CMOS stores the pixel data of 32 pixels along
It is nothing but a fast x-y plotter that 8-bit chip based on AVR enhanced a column, indicating the on/off states.
displays an input signal versus anoth- RISC architecture. It has 16kB in- On state is represented by a value of 1
er signal or time. There is a luminous system programmable Flash memory, to 31 and an off state by 0. The vertical
spot which moves over the display 512 bytes of EEPROM and 1kB SRAM. trace movement is synchronised by
area in response to the input volt- A 16MHz crystal is connected across the 20µs delay from one column to the
age. But displaying a monochrome its pins 12 and 13 to provide basic next. The details are given in comment
bitmap image on an oscilloscope is a clock. An R-2R ladder network DAC lines of the code.
challenging yet interesting task. Here (digital-to-analogue converter) is used The loop is repeated continuously
we present a project where you can to convert digital (8-bit) values from as there is no DDRAM (data display
display any image or multiple images the microcontroller to analogue values RAM) to store the pixel information.
(monochrome) on an analogue oscil- that are input to the oscilloscope. So, for persistence of vision, the trace
is repeated continuously for a certain
Software number of cycles (50 here in the code).
The software is writ- More than one image can be stored
ten in C language and in new arrays until the Flash memory
compiled using Pro- saturates.
grammer’s Notepad of The trace of the oscilloscope runs
WinAVR software. The with internal trigger set at 10ms (time/
hex code is burnt in the div). The trace is set at this value for
microcontroller using a proper persistence of vision and in
suitable programmer. synchronisation with the timing of the
The fuse settings for code for proper display.
ATmega16 are: The analogue values are applied
lfuse-0xef to the y-input of the scope. Each of
Fig. 1: Image display on an analogue oscilloscope hfuse-0x99 the 32 pixels across a single column in
the screen is assigned a par-
ticular voltage level (digital
5V
10 30
values from 0 to 31) as seen
GND
Vcc AVcc in the code. By switching the
1 PB0 PA0 40
GROUND OF CRO PROBE
2 PB1 PA1 39
values from 0 to 31 very fast,
3 PB2
4 PB3
PA2 38 we form a pixel of 32 dots
R1 − R8 = 100K PA3 37
5 PB4 PA4 36 across a single column. As
6 PB5 PA5 35
7 PB6 PA6 34 the trace moves horizontally,
8 PB7 PA7 33
9 RST
IC1
AREF 32
it forms an array of pixels
14 PD0 ATMEGA16 PC7 29
15 PD1
across the screen having 32
PC6 28
16 PD2 PC5 27 rows. This is how the pixel
17 PD3 PC4 26
R1 R2 R3 R4 R5 R6 R7 R8 18 PD4 PC3 25
array is generated on the
R10 R11 R12 R13 R14 R15 R16 R9
19 PD5
20 PD6
PC2 24 screen. The 32 pixels across
PC1 23
56K 56K 56K 56K 56K 56K 56K 100K 21 PD7 PC0 22 a single column constitute 4
11 GND 31
bytes. By individual switch-
GND
XTAL2 XTAL1

12 13 ing of the pixels across a


OUTPUT TO CRO PROBE X TAL1
16MHz
column till the trace moves
to the next column, an image
Fig. 2: Circuit for oscilloscope as image viewer can be displayed.

102 August 2014 | Electronics For You www.efymag.com


diy: tips & technique

efy Note
The source code of this project is
included in this month’s EFY DVD
and is also available for free down-
load at source.efymag.com

Construction and testing


The below-mentioned settings must
be made in the oscilloscope for proper
display of images (any deviation in
values will lead to distorted images):
1. Volt/div knob set to 50mV
2. Time/div knob set to 10ms
3. Trigger source set to internal
Fig. 3: GLCD bitmap editor trigger
4. Trigger mode set to auto
5. Trigger slope set to negative
(may be neglected)
Now resize the image to 84×32
(width×height) size. Convert the image
to monochrome BMP format by sav-
ing the resized image as monochrome
BMP format in MS-Paint.
Download microC PRO for AVR
from http://www.mikroe.com/down-
loads/get/299/mikroc_pro_avr_v600.
zip. Install the software and run it.
Open GLCD bitmap editor from the
tool menu as shown in Fig. 3.
Get the byte code of the BMP image
by directly loading the image in the
Nokia 3310 tab as shown in Fig. 4.
Copy the 504 bytes of byte code of
Fig. 4: Loading the BMP image to get the byte code the image and paste it in the source
code as shown in Fig. 5.
Compile the code and burn it in
the microcontroller using a suitable
programmer. Connect the oscilloscope
probe to the circuit as shown in Fig. 2
and the stored image will be displayed.
The code is optimised and properly
synchronised with time for proper dis-
play of images on the oscilloscope. Any
changes in the code (addition of time
delays, lines), clock frequency, crystal
value, changes in settings of oscillo-
scope may lead to a distorted image.
The code is written so that no external
trigger signal is required. The image is
displayed with proper synchronisation
with the internal trigger signal. 

The author is currently working as GET at Maruti


Fig. 5: Copying byte code of the image in the program Suzuki India Ltd, Gurgaon

www.efymag.com Electronics For You | August 2014 103


diy: tips & technique

Use of I²C for Extension of GPIOs vivek panc


habhaiya

Somnath Bera panel, which eats away half a dozen shown below (also refer Fig. 4) and then
of GPIOs, can straightaway be shifted save and exit.

R
aspberry Pi has a total of 26 to the additional microcontroller, con- #blacklist spi-bcm2708
pins on the GPIO header, out suming only two pins of Raspberry Pi #blacklist i2c-bcm2708
of which only 17 can be inter- to control all these countless GPIOs Now install the necessary software
faced with external hardware. But to precisely yet very economically. to manipulate the I2C bus using follow-
further extend the interfacing you can In July issue we had shown how ing commands (also refer Fig. 5):
connect an additional microcontroller to interface dot-matrix LED displays $ sudo apt-get update
and increase the GPIO capability by using I2C pins of Raspberry Pi and I/O $ sudo apt-get install python-smbus
any number. Even the regular LCD expander MCP23017. Here we will fur- i2c-tools
ther extend the GPIOs of the Raspberry Once the software is installed, re-
Pi using I/O expander MCP23008 to boot your Raspberry Pi so that these
interface multiple devices, such as digi- effects take place permanently. Also
tal temperature sensor DS18B20 and install Python and python-dev on Rasp-
16x4 LCD. The LCD will display the IP berry Pi using the following commands
address, temperature, date and time. (also refer Fig. 6):
Here I2C communication is used. $ sudo apt-get install python
I2C is a serial communications protocol python-dev
which allows chips to swap data on For testing whether the I2C is suc-
Fig. 1: Author’s prototype the same bus. The I2C is just two wires, cessfully enabled, refer article ‘Interfac-
SDA and SCL (pin 3 and pin ing Dot-Matrix LED With Raspberry Pi’
5), which control all the I2C published in July issue.
devices connected on Rasp-
berry Pi computer. Circuit and working
Make the connections as shown in Fig.
System set up 7 to interface 16x4 LCD (LCD1) and
To use I2C on Raspberry Pi, temperature sensor DS18B20 (IC2). Fig.
Fig. 2: Adding the lines in /etc/modules you need to enable a few 8 shows pin configuration of the tem-
things in Raspbian Wheezy perature sensor.
operating system, as by de- Wire up the LCD panel as shown
fault it is not enabled. This in Fig. 7.
is a fairly easy process. First The temperature sensor is connected
Fig. 3: Editing the raspi-blacklist.conf file you need to edit the mod- directly to the Raspberry Pi whereas
ules file using the command: the LCD panel is connected through
$ sudo nano /etc/modules MCP23008. Apart from Ground and
Then add the following 5V, only two more wires, SDA and
two lines (also refer Fig. 2): SCL, have gone to the MCP23008 chip
i2c-bcm2708 as shown in Fig. 7.
i2c-dev
Fig. 4: Commenting the code Save the file and exit Software
nano. Next, open the raspi- The program uses Adafruit_MCP230xx.
blacklist.conf file by writing py and Adafruit_I2C.py GPL librar-
the following command ies which are taken from Adafruit.
Fig. 5: Installing python-smbus and I2C tools (also refer Fig. 3): com. The source code has two other
$ sudo nano /etc/
modprobe.d/raspi-blacklist. efy Note
conf The source code of this project is
Comment out the code included in this month’s EFY DVD
by putting # symbol at the and is also available for free down-
Fig. 6: Installing Python packages beginning of the two lines as load at source.efymag.com

104 August 2014 | Electronics For You www.efymag.com


diy: tips & technique
files, lcd23008.py and iptalk2mcp.py, the source code from the DVD or the The LCD will start showing the IP
which are for running the 16x4 LCD website and run the code using the address, day, date and time along with
panel and displaying date, time, day command: ambient temperature as shown in Fig. 1.
and temperature on it. Download $ sudo python iptalk2mcp.py To make it run every time it boots,
add the above line somewhere
near the top in /etc/rc.local
1
Vss
K file.
16
R2 VO LCD1
PIN5 1 18 3

PIN3 2
SCL VDD

16
1K
2
VDD
16X4
A/VEE
15
WebIOPi
SDA GP7

3 15
D7 D6 D5 D4 D3 D2 D1 D0 EN R/W RS
WebIOPi has a beautiful in-
DS18B20

1 A2 GP6
GND 14 13 12 11 10 9 8 7 6 5 4
2 terface with MCP230XX. Once
IC2

DQ 4
A1 GP5 17
3 IC1
VDD
5
A0 GP4 14 you add it in /etc/webiopi/
PIN2 6
MCP23008
GP3 13
config file in the [Devices]
RESET
RASPBERRY PI

7 12
section, MCP230XX will start
R1 NC GP2

4.7K 8 11
showing all its GPIOs in the
PIN7 INT GP1

PIN6 9 10
Explorer. By clicking them in
Vss GP0 GND
the Explorer window you can
make them on or off as shown
Fig. 7: LCD interface with MCP23008 in Fig. 9. Refer WebIOPi article
published in June issue
for more information. 

The author is an avid user


of open source software.
Professionally, he is a thermal
power expert working as an
additional general manager at
Fig. 8: DS18B20 temperature sensor interfacing Fig. 9: WebIOPI NTPC Limited

www.efymag.com Electronics For You | August 2014 105


dIy: software

Understanding Digital Camera


Histograms Using MATLAB
o
sani the

Ahlad Kumar and Vijeta Khare help in clicking better pictures. Apart Image is stored in a computer in
from a general discussion on histo- the form of a matrix. Each pixel of

T
his article discusses the impor- gram, a MATLAB implementation of an image denotes the intensity value
tance of histograms generated the same is provided for the hard-core at that point. This intensity value is
by high-end cameras, which programmers. known as its gray level. So, if a point is
Histogram is an excellent dark, its intensity (gray) value is zero.
feature available in most of the If it is the brightest possible, its inten-
modern-day cameras from Nikon, sity value is 255. So an image stored in
Canon, etc. Unfortunately, very a computer in the form of matrix has
few people know how to make its values ranging from 0 to 255. For
good use of histograms. By un- example, a typical image (refer Fig. 3)
derstanding histograms we can is stored in a computer in the form of
predict how good the picture is matrix shown in Fig. 4.
going to be even before clicking it. The values present in the matrix
Fig. 1 shows a typical LCD shown in Fig. 4 are the gray values of
screen of a high-end camera. The an image. For example, 9 being close
Fig. 1: Typical screen of a camera control menu of the camera is to zero its contribution to an image
shown in Fig. 2. On the top right will be dark. But 133 is a much higher
corner of control menu is a black value, so its contribution to an image
AF mode
Picture style
Histogram box marked as histogram, which will be bright.
Focusing frame
White balance
Drive mode
(Quick mode) shows a waveform that most Histogram plots the occurrence
Magnifying
Image-recording quality
AE lock
frame camera-users think is useless. (frequency) of these gray levels on
AEB
Flash-ready FEB
Exposure simulation
But if we understand this wave- y-axis while x-axis plots the value of
Shutter speed Battery check form we can click our pictures gray levels from 0 to 255. We observe
Aperture Highlight tone priority
Exposure level ISO speed perfectly, without later realising that gray values 64 and 45 occur twice
Flash exposure compensation Shots remaining
that the lightening or illumination each while value 121 occurs thrice, and
Fig. 2: Control menu on the camera was poor. rest of the pixels occur once only. Ac-
cordingly, the histogram of this image
Histogram is shown in Fig. 5.
Histogram of an image is the graphi- It can be observed from the histo-
cal representation of the frequency of gram that y-axis corresponds to the
occurrence of each gray level in an number of times a specific gray value
image. To understand this statement shown on x-axis occurs. If we general-
clearly, the meaning of gray level must ise this discussion further, we arrive
be understood first. at the conclusion that, if an image is
3
almost dark then its histogram will
be towards the left side of the graph,
2.5 while for a very bright image it will
2 be towards extreme right side. But if
Fig. 3: A typical image an image is uniformly bright, its histo-
Frequency

1.5
gram will be uniform throughout from
64 133 112 121 1 left to right.
92 121 23 45 To understand it clearly, let us take
0.5
three different cases of bright, dark and
84 32 64 90 0 uniform images.
0 20 40 60 80 100 120
45 21 9 121 Gray values Bright image. Fig. 6 shows a bright
Fig. 4: Matrix representation of Fig. 3 Fig. 5: Histogram of the image seen in Fig. 4 image of a globe and its histogram

106 August 2014 | Electronics For You www.efymag.com


dIy: software
discussed earlier. means all the gray values have nearly
Dark image. Next, we take equal contribution to create a good and
the example of a very dark im- clear image.
age as shown in Fig. 8. So, if you want to capture an im-
It can be observed from Fig. age of high quality, just look at the
8 that dark image corresponds histogram of the image generated by
to the pixel values close to zero, the camera and try to adjust the light-
hence it can be seen from its ing or position of the camera in such
histogram (refer Fig. 9) that a way that the histogram is uniformly
most of the pixels are close to distributed.
zero, resulting in a histogram
towards the left side. Software program
Uniform image. For the MATLAB program is used here to cre-
third example, a uniform bright ate histogram of an image. Though we
image is shown in Fig. 10. The have an in-built function in MATLAB
Fig. 6: A bright image image is well captured with to do this job, but the whole idea is to
understand the concept of histogram in
2.5
×105
efy Note detail. It is only then we can optimise
the code to make it work faster for the
The source code of this project is
2
included in this month’s EFY DVD coming generation of high-end cam-
and is also available for free down- eras. The MATLAB code is as listed
1.5
load at source.efymag.com below:
1 y=imread(‘Path of image to be
inserted’);
0.5

[m,n,num_colors]=size(y);
0
0 50 100 150 200 250 300 if num_colors> 1
Fig. 7: Histogram of bright image x1=rgb2gray(y);
x=double(x1);
else
x=double(y);
end

counter=zeros(256,1);
for i=1:size(x,1)
for j=1:size(x,2)
Fig. 8: Dark image Fig. 10: Uniformly bright image for k=0:255
if(x(i,j)==k)

×105 counter(k+1)=counter(k+1)+1;
4500
3
end
4000
2.5 end
3500
end
2 3000
end
2500
1.5
2000
1500
bar(counter,0.00001),title
1
1000 (‘HISTOGRAM’);
0.5
500 Before compiling the code, you
0 0 need to provide the path of the image
0 50 100 150 200 250 300 0 50 100 150 200 250 300 in the code. When you compile and
Fig. 9: Histogram of dark image Fig. 11: Histogram of uniformly bright image run the code in MATLAB, you will get
the histogram of the image file. 
in Fig. 7. Bright image means all its uniform lighting condition.
pixels have a value close to 255. As By looking at the histogram in Fig. Both the authors are M.Tech from ABV-Indian
can be seen from Fig. 7, most of the 11 it can be seen that for a good image Institute of Information Technology and Manage-
histogram is towards the right side as it is nearly uniformly distributed. This ment, Gwalior

www.efymag.com Electronics For You | August 2014 107


dIy: software

Building Image Processing


Embedded Systems Using Python
Jayneil Dalal Arduino. To control peripheral de-
vices, we need a hardware circuit with

T
t rai
his project describes a technique a ‘brain.’ This role can be played by abhijee

to capture human faces using any microcontroller or microprocessor.


image processing and turn on A microcontroller cannot be directly
an LED on the Arduino board. With used in a circuit as it is. A full devel- RFC 2217 (since v2.5). We use this for
some modification it can be used to opment circuit board has to be made, communication with the external hard-
detect intruders and set an alarm. providing access to different pins of ware (Arduino). This library is easy to
the microcontroller. Here, Arduino use and it has good documentation.
Embedded system development board is used due to the Python. Python is a general-
components following reasons: purpose, high-level programming
Five basic components required to 1. It is open source, so all schemat- language whose design philosophy
build an embedded system using Py- ics are available and you can design emphasises code readability. Python
thon are described below briefly. the same board on your own. claims to combine remarkable power
Operating system (OS). The OS is 2. It is based on the concept of with very clear syntax, and its stand-
the heart of an embedded vision sys- breadboard prototyping, which en- ard library is large and comprehensive.
tem. Many dependencies that are re- courages the use of hook-up wires and
quired to run software are provided by breadboard, to make a circuit which OpenCV installation
can be easily modified Let us now proceed to OpenCV instal-
later. This avoids the has- lation. All commands are meant to be
sle of soldering. run in a terminal.
3. There are a number 1. Install all pre-requisites as shown
of tutorials, tons of code, below:
forums, etc, to help begin- $ sudo apt-get install build-essential
ners. $ sudo apt-get install cmake
4. The design of the $ sudo apt-get install pkg-config
Fig. 1: Block diagram of different modules in OpenCV board and IDE is so simple $ sudo apt-get install libpng12-0
that one does not have to libpng12-dev libpng++-dev libpng3
the OS, which is the interface between be an engineer to use it. $ sudo apt-get install libpnglite-dev
the hardware and the application soft- 5. It is pretty cheap compared to libpngwriter0-dev libpngwriter0c2
ware. There are various Linux distribu- other available development boards. $ sudo apt-get install zlib1g-dbg
tions, such as Ubuntu and Fedora, to There are various versions of Ar- zlib1g zlib1g-dev
choose from. I prefer Ubuntu as it is duino to choose from, such as Uno, $ sudo apt-get install libjasper-dev
easy to learn. Mega and Lilypad. I prefer the Ar- libjasper-runtime libjasper1
Image processing (IP) software. duino Mega, which is a microcontroller $ sudo apt-get install pngtools
There are many software and libraries board based on the ATmega1280. It libtiff4-dev libtiff4 libtiffxx0c2
available for image processing, such contains everything needed to support libtiff-tools
as MATLAB and OpenCV. I prefer the microcontroller; simply connect $ sudo apt-get install libjpeg8
OpenCV as it is free, fast, has good it to a computer with a USB cable, or libjpeg8-dev libjpeg8-dbg
documentation, tutorials, user groups, power it with an AC-to-DC adaptor or libjpeg-prog
forums, etc. There are a lot of pre-built battery, to get started. $ sudo apt-get install ffmpeg
functions and algorithms to get a head Pyserial. This is a library that pro- libavcodec-dev libavcodec52
start. There is active development on vides Python support for serial connec- libavformat52 libavformat-dev
interfaces for other languages like tions (RS232) over a variety of different $ sudo apt-get install
Ruby, Python, MATLAB, etc. Fig. 1 is devices: serial COM ports, Bluetooth libgstreamer0.10-0-dbg
a block diagram showing the different dongles, infra-red ports, and so on. It libgstreamer0.10-0 libgstreamer0.10-
modules in OpenCV. also supports remote serial ports via dev

108 August 2014 | Electronics For You www.efymag.com


dIy: software
$ sudo apt-get install libxine1- which is needed) to
ffmpeg libxine-dev libxine1-bin load the image into
$ sudo apt-get install libunicap2 the variable src.
libunicap2-dev The ‘Named-
$ sudo apt-get install libdc1394-22- Window’ function
dev libdc1394-22 libdc1394-utils creates a window to
$ sudo apt-get install swig display the loaded
$ sudo apt-get install libv4l-0 image. The first pa-
libv4l-dev rameter is the name
$ sudo apt-get install python-numpy for the window,
$ sudo apt-get install build-essential and the second sets
libgtk2.0-dev libjpeg62-dev libtiff4- the sizing mode to
dev libjasper-dev libopenexr-dev automatically resize
cmake python-dev python-numpy libtbb- the window to the
dev libeigen2-dev yasm libfaac-dev
Fig. 2: Reading and displaying Fig. 3: Gray scale image
size of the image.
libopencore-amrnb-dev libopencore- the image ‘ShowImage’ is
amrwb-dev libtheora-dev libvorbis-dev used to display the
libxvidcore-dev of the file: image in the window, passing it the
2. Install Python development PKG_CONFIG_PATH=$PKG_CONFIG_PATH: name of the window and the image
headers with ‘sudo apt-get install /usr/local/lib/pkgconfig variable.
python-dev.’ export PKG_CONFIG_PATH ‘WaitKey’ is used so that you can
3. Download the source code from 9. Save and close the file, then log see the image for a sizeable period of
http://sourceforge.net/projects/ out and log in again, or reboot the time (similar to a delay function).
opencvlibrary/files/opencv-unix/2.3/. system. Finally, ‘DestroyWindow’ destroys
It is recommended that you move the the window and frees the resources it
downloaded OpenCV package to your Examples of used.
/home/<user> directory. With that image processing Converting an RGB image to gray
as your current directory, extract the Now let us see how to use the OpenCV scale format. Most digital images use
archive, as follows: library via the Python interface to per- the RGB colour model, in which every
$ tar -xvf OpenCV-2.3.1a.tar.bz2 form image processing-based tasks. pixel has three components—red,
cd OpenCV-2.3.1/ Here is an explanation of OpenCV green and blue. By varying the amount
4. Make a new directory called syntax and how to use it, along with of each component, a pixel gets a
‘build’ and change directory into it a few examples. We need not go into unique colour.
(that is, mkdir build; cd build). the basics of Python code and syntax Grayscale is another popular colour
5. Run Cmake as given below: since that is extensively documented; model, with only one component that
$ cmake -D WITH_TBB=ON -D BUILD_NEW_ see http://www.python.org/doc/ for more. varies from 0-255; 0 represents black,
PYTHON_SUPPORT=ON -D WITH_V4L=OFF-D Reading and displaying an im- and 255 white (for an 8-bit image). The
INSTALL_C_EXAMPLES=ON -D INSTALL_ age. Our first example named ‘test.py’ rgb2gray.py code converts an image
PYTHON_EXAMPLES=ON -D BUILD_ is written in Python (refer EFY Note from RGB to gray scale, which is es-
EXAMPLES=ON .. about the source code of this article). sential for image detection.
6. Follow this with ‘make’ and Open the terminal, navigate to the Running this code will give out-
‘sudo make install’ (to install the li- directory that contains the test.py file put as shown in Fig. 3. In the eighth
brary). and run it with ‘python test.py’ com- line, we have created our own image,
7. Next, configure the system to use mand. Here, 12.png is the name of the similar to the source image (src). The
the new OpenCV shared libraries. Edit image file stored under home/jayneil/ ‘GetSize’ returns the properties of the
a configuration file with sudo gedit /etc/ folder. You can change the name of the source image—so our new image has
ld.so.conf.d/opencv.conf. Add the follow- folder if you wish, but you will have to the same dimensions as the source.
ing line at the end of the file (it may be change it in the source code too. The ‘CreateImage’ takes three parameters:
an empty file, which is okay) and then output is as shown in Fig. 2. the image dimensions, the colour
save it: The functions in test.py code can be depth of the image (8-bit or 16-bit) and
/usr/local/lib explained as given below. the number of channels (which, for
Close the file and run sudo ldconfig. The ‘Import’ function imports the gray scale, is one). We used the ‘Cvt-
8. Open your system bashrc file (for OpenCV module ‘cv’ so that you can Color’ function to convert the image
me, that is sudo gedit /etc/bash.bashrc) use it, then call the ‘LoadImage’ func- to gray scale. This function has three
and add the following code at the end tion (passing the full path to the file, parameters. The first one is the source

www.efymag.com Electronics For You | August 2014 109


dIy: software
Canny filter in the 15th line. This
function takes five parameters:
the source image, the variable in
which to store the processed im-
age, and the rest are the threshold
values for this filter.

Face detection
Now, let us detect faces from still
images (refer Fig. 7) using a Haar
classifier. The Haar classifier is a
pre-made program, which you
can train to do operations based
on your needs. The more you run
Fig. 4: Circle in the image Fig. 5: Laplacian edge detection Fig. 6: Edge detection using
the program, the more the Haar
Canny filter classifier learns and trains itself.
All Haar classifiers are located
in OpenCV-2.3.0/data/haarcas-
cades. The face.py code does this.
Run the face.py code and the
output is as shown in Fig. 8. In
the ninth line of face.py code the
Haar classifier is stored which
you may use in a variable, as
given below:
hc=cv.Load(“/home/jayneil/
haarcascade_frontalface_
default.xml”)
In the 11th line, the ‘HaarDe-
tectObjects’ function is used to
Fig. 7: Still images Fig. 8: Face detection output detect the features you want. This
function has three parameters.
image which we want to convert and an image to get the edges. The laplace. The first one is the source image, the
the second denotes the destination py code does this. second the Haar classifier that you
variable. The third parameter performs Fig. 5 shows the output of the want to use and the third one creates
the type of conversion desired. In this code given above. The ‘print’ function a memory storage. Then there is a ‘for’
case it is from RGB to gray scale. outputs the properties of the image. loop to draw a rectangle around the
Drawing a circle on an image. You In the 10th line of laplace.py code, the portion that you may have identified
can also edit or manipulate a given Laplace function is used to obtain the in the previous stage, using the ‘rectan-
image, for example, by drawing a cir- edges. It takes two parameters—the gle’ function. ‘Rectangle’ function takes
cle in or around it. The circle.py code source image and the variable in which four parameters: the image on which
does this. to store the processed image. You can to draw, followed by the two opposite
After running the code you will use ‘SaveImage’ to save the resultant corners of the rectangle, and the last
get output as shown in Fig. 4. From image, supplying the path, the file- one denotes the colour.
the ninth to the 11th line in circle.py name and the variable containing the
code, we have described the param- image. Then load the saved image and Serial communication
eters of the circle—its thickness, line display it. This section will show you how to use
type and co-ordinates. In line 12, the The Canny filter. This is a very the pyserial module, Arduino and,
‘circle’ function is used, which has six popular filter, which is used to very ac- finally, how to build a full-fledged
parameters: the target image on which curately detect the edges in an image. embedded system for image process-
to draw the circle, the coordinates, the The canny.py code does this. ing. Pyserial is a library that provides
radius of the circle, the colour of the Run the canny.py code and you Python support for serial communica-
circle, the thickness and the line type. will get output as shown in Fig. 6. Con- tion.
The Laplacian of an image. Often, vert the input image to gray scale first Now, let us explore how to use
the Laplace operation is performed on (see the ninth line), before applying the pyserial and send data to other devices

110 August 2014 | Electronics For You www.efymag.com


dIy: software
via serial communication. First run the LED will continue to turn on
Python in a terminal. Then import the and off.
pyserial module (import serial). If this
gives no errors, we are ready—else you Controlling the LED
may have to install the package with with image
the module. Now, since laptops do not The buildinges.py OpenCV
have serial ports, you may use a USB- code will detect faces from a
to-serial converter (db9) for this demo. given image, and if the opera-
Short the Data Transmitting (pin 3) and tion is successful, it will trigger
Data Receiving (pin 2) pins of COM the Arduino via pyserial.
port, so whatever information you The buildinges.py code is
send via the pyserial module would quite similar to the face.py code.
come back. The pyserial.py code il- Basically, the pyserial module
lustrates this. has been imported, which will
The first line of pyserial.py code trigger the Arduino. When
opens the desired serial port and sets we perform face detection, all
the baud rate. The second line writes detected contours are stored in
the data to the serial port, the third Fig. 9: Arduino IDE the ‘faces’ variable (this means
reads the data from the serial port and a non-zero and non-negative
stores it in a variable, and the last line value if the operation is successful). So
displays the value of the variable. If we do a basic condition check, and if
everything goes well, the output on face detection is successful, it triggers
your screen should be the same string Arduino and sends letter Y to the serial
written to the serial port—EFY\n. If so, port—else it sends letter N.
your serial communication system is Now let us look at the buildinges.
working well. Use this to communicate ino Arduino code, which will respond
with Arduino board. to the above OpenCV code.
In the ‘if’ condition under void loop
Setting up Arduino ( ) in buildinges.ino code, we used Se-
Let us use the Arduino IDE (Fig. 9) rial.available ( ), which detects if any
to write the code. You can install it data has been sent to the serial port.
via Ubuntu Software Centre by just Fig. 10: Controlling the LED If true, then Serial.read ( ) will read
searching for ‘Arduino.’ After the the incoming character and store it in
installation, launch it. Connect your ‘incomingBit.’ Then the data received
Arduino to your computer via the USB
efy Note from the serial port will be printed on
cable. Then select the target board—go The source codes of this project are the screen. If the value of ‘incomingBit’
to Tools->Board option and make the included in this month’s EFY DVD is ‘Y,’ program turns on the LED else
choice. Next, configure the serial port and are also available for free down- LED is off.
load at source.efymag.com
via Tools->Serial option and select the
available port. Connect an LED with Application
current-limiting resistor between pin while the latter runs infinite times. In The LED can be replaced by any elec-
13 and ground. Now, write the first the fifth line is defined a variable for tronic appliance in your house, like a
Arduino_LED.ino code to get an LED the pin number to connect the anode fan, refrigerator or TV. (Obviously you
to flicker. of the LED. Then in setup module, it will need a relay to control these appli-
Click the Verify button to check for has been declared that the pin would ances.) Look at this from the security
errors in the program, and then click be used as an output pin. Then serial point of view. We can design an em-
the Upload button to dump the code communication was initialised with bedded system that uses OpenCV for
to the Arduino. If everything is fine, a baud rate of 9600. Now in the loop image-processing to detect an intruder,
you will see the LED toggle on and off module, the value of pin 13 was first and trigger an alarm via the pyserial
(Fig. 10). set as ‘low’ (0, because the pin is digi- module and Arduino. 
The comments have been included tal). This will turn off the LED. After a
The author is a FOSS advocate and loves to explore
on right side in the Arduino_LED.ino delay of one second, the pin value was
different open source technologies. His areas of
code for explanation. There are basi- set to ‘high’ (1), which will turn on the interest include OpenCV, Python, Android, Linux,
cally two modules in Arduino—setup LED, followed by another one-second Arduino, BeagleBoard and other open source hard-
and loop. The first module runs once, delay. This loop will run forever, hence ware platforms

www.efymag.com Electronics For You | August 2014 111


useful websites

Solar Energy: Stay Up-to-Date


Our planet Earth receives a huge amount of energy from Sun in the form of radiant light and heat.
Solar photovoltaic cells and the panels built around them are becoming extremely popular source
for harnessing these energies. Here are some of the sites which can enlighten you on the topic
niraj sahay

freesunpower.com
The website provides a good tutorial for setting up a solar power system for producing electricity
from sunlight. The tutorial covers solar panels, charge controllers, power inverters, storage batteries,
AC generators, wires & cables, meters & monitors, and more. Complete system wiring diagrams plus
interactive online design tools are also featured with a point-and-click interface. The site can work as
a place to learn and have fun with solar power.

http://www.freesunpower.com/index.php

indiasolarmarket.com
The website aims to be a one-stop portal for everything on solar energy in India. It provides daily
updates on the Indian solar market in the form of news, developments, market and policy, upcoming
events and expert opinions. The site also has an active jobs portal which provides a platform for both
candidates and employers to connect with one another.

http://indiasolarmarket.com

builditsolar.com
The website has plans, tools and information to help you build different solar projects. It has hundreds
of projects ranging from lighting an electric bulb to building solar homes. It also has design information
and tools for building renewable energy projects. The website offers a monthly newsletter which can
be subscribed to by anyone to stay updated on such projects.

http://www.builditsolar.com

solarpaneltalk.com
The site is a discussion board on solar panels and solar power products. Currently, the forum has
about 18,600 members with 106,500 posts and 12,000 threads. Anyone interested in solar panels
and other related products can register for free and take part in discussions. The topics for discussion
on the forum include solar panel systems on the grid, solar industry, off-grid solar, solar thermal, solar
power lighting, do-it-yourself solar panels and other general discussion on solar energy.

www.solarpaneltalk.com

sourceguides.com
The site is a comprehensive buyers’ guide and business directory to more than 27,000 renewable
energy businesses and organisations worldwide. Its source guides have been providing
comprehensive up-to-date information on renewable energy businesses worldwide since 1995.
It adds more than 100 new renewable energy businesses each month. It has a section for news on
the latest in renewable energy which gets updated daily.

http://energy.sourceguides.com/businesses/byP/solar/solar.shtml
112 August 2014 | Electronics For You www.efymag.com
industry FOCUS

Aerospace and Defence Industries:


Offering Further Opportunities
With changing policies and focus of the Central government to indigenise defence
equipment, the opportunities for domestic players are gradually increasing. Read on to
find out the trends in this sector

Anagha P. 60000

A
50000
ccording to the Military Ex-
40000
penditure Database main-
tained by think tank Stock- 30000

holm International Peace Research 20000

Institute (SIPRI), India is the ninth 10000

biggest spender on defence in the 0


1988 1990 1992 1994 1996 1998 2000 2002 2004 2006 2008 2010 2012 2014
world. The Interim Union Budget for
2014-15 allocated ` 2290 billion Indian Fig. 1: Chart of Indian defence spending in US$ showing gradual increase (Data sourced from SIPRI)
rupees for defence, around 10% more
than outlay of ` 2040 billion in 2013- 4
2014. With this enhanced allocation, 3.5

the defence/strategic electronics could 3


2.5
become one of the largest sectors in
2
India over the next ten years. It is also
1.5
likely to grow at an average compound
1
rate (CAGR) of 20-30 per cent. The sec- 0.5
tor accounts for around 6-7 per cent of 0
the overall Indian electronics market. 1988 1990 1992 1994 1996 1998 2000 2002 2004 2006 2008 2010 2012 2014

The Global Strategic Trends - Out to Fig. 2: Chart of Indian defence spending as a % of GDP showing reduction (Data sourced from SIPRI)
2045, a publication by Britain’s Defence
Ministry, forecasts the acceleration aerospace sector. Private companies also tap this huge market. Between
of India’s defence expenditure over have a lot of involvement and play 2004 and 2013, the government issued
the next three decades to rival that of an important role along with PSUs. licences to 209 Indian companies for
China and the USA. The big firms, such as Tata, L&T and manufacturing defence equipment
Mahindra, are aiming to become al- domestically. The pace of granting
Indigenisation and growth ternatives to the PSUs. The PSUs sub- licences has comparatively increased
of the private sector contract the projects, mainly because of over the last five years.
Earlier, major defence projects in In- the expertise and manpower available Sunil Kottarathil of Mistral Solu-
dia were done through collaboration with private players. tions is of the opinion that the vision of
with the Russians and Europeans for The private sector is estimated to indigenisation by the new government
products like the Jaguars and Mirages, have a relatively small share (just 5%) will lower dependence on imports,
where nothing much was done here of the defence equipment market as and this would boost Indian indus-
except the assembling of aircraft. India of now. Over 70 per cent of India’s tries. The government is expected to
didn’t develop indigenous products in defence equipment needs are still met invest on new programmes like intelli-
this sector except for the Light Combat through imports. gence, surveillance and reconnaissance
Aircraft, probably because the volumes The amount spent on India’s technologies, electronic warfare and
were not there. imports of defence equipment was a network-centric warfare technologies.
The government of India (GOI) massive ` 400 billion in 2013. Now that “The focus will be on the ability to
now welcomes domestic private par- Indian government has stressed on know, process and react in real-time
ticipation in the fields of research, the need for indigenisation in design, to events occurring on the ground,
development and manufacturing in private companies in our country can air and sea, which will be a strategic

www.efymag.com Electronics For You | August 2014 113


industry FOCUS
aircraft. They stick to fabrication, paint-
Growth in civilian aerospace sector
ing, limited machining or making small
There are several macro and micro factors, such as India’s economic growth, driving parts. So the direct participation of MS-
growth in India’s aerospace industry. An Airbus report projects that India will need around
MEs in the defence sector is far-fetched,
1290 aircraft over the next 20 years. Safety and maintenance concerns of the government
and citizens, which lead to push for domestic firms, liberalisation of civil aviation policies, unless MSMEs work as a group, like one
well-educated and specialised talent pool, ability to leverage IT competitiveness, and firm doing the machining, another fabri-
development of special economic zones are a few among these. cation and yet another assembling, and
As a support service to the aviation industry, the maintenance, repair and overhaul together creating a complete product.
(MRO) sector is also growing with aerospace and defence (A&D) industry, and would Also, defence contracts take a long time
make India a potential global/regional MRO hub. India’s MRO segment is estimated to to execute—even two years or more. It
grow at 10% and reach US$ 2.6 billion by 2020.
becomes difficult for an MSME to wait
At the moment, airlines send their planes to Singapore, Paris and Dubai for preventive
maintenance as OEMs have not yet set up MROs in India. This is because the volume, that long.
or the size of the fleet, is not currently justifiable. “Executing MRO operations is difficult, “We see an increased role for MS-
especially with stocking the parts, regulators’ approvals, and hiring and maintaining the MEs in the defence sector with out-
skilled workers needed for such a very technically-strong business. The moment there sourcing of production by defence pub-
exist 600-650 airplanes flying in India, OEMs will definitely set up in India. MRO, when it lic sector undertakings (DPSUs). They
happens, will definitely be a big one,” adds Chris Rao, vice president of UTAS. work with the big players and, some-
times, they even directly participate in
Ministry of Defence tenders, competing
Amendments in Industrial Licensing Policy with these global players,” says Nasser
The Ministry of Defence has come up with major amendments in the industrial licensing Jariwala of Rohde & Schwarz. 
policy with a liberalised list of equipment and products that require industrial licensing in
defence sector.  Business opportunities
Released by the Commerce and Industry Ministry on 26th June, the new list has over
The increased budget allocations for the
50% of items removed from the previous mandatory licensing policy.
Previously, all defence-related products required licensing. Furthermore, the items listed armed forces, army’s plans to replace
under dual use—products that have both military and civilian use—created much confu- old equipment and introduce cutting-
sion in the licensing constraints. edge technology, and the ambitious
The new framework clearly lists four categories of products specifically designed for projects taken up by the research and
military application that will require compulsory licensing: development teams in the aerospace
• Tanks and other armoured vehicles and defence sector have created im-
• Defence aircraft, spacecraft and parts
mense opportunities in defence sector.
• Warships of all kinds
• Arms and ammunition and allied items of defence equipment, parts and accessories The government is planning to create
Companies that produce items that are not included in the list (such as sub-assemblies, additional opportunities worth US$ 150
castings, components, night-vision instruments and surveillance gadgets) would not re- billion in defence electronics over the
quire industrial licensing for defence purpose. The dual-use items are also exempted from next 10 years, and out of this, over US$
licensing, unless specified in the new list. 100 billion would be open to Indian
firms. DRDO is developing products
advantage in conflict (or avoiding MEs still do not have the technology, for orders worth 160 billion rupees,
conflict),” he adds. The policies have investment and infrastructure to make many of which are nearing the comple-
generally changed to giving priority complex equipment like guns, tanks or tion stage. Hence, DRDO is looking for
to the Indian vendors for procurement
of defence equipment. However, the Union Budget 2014-2015: What’s in for Defence Sector
delay in awarding contracts and tax The Union Budget for 2014-2015 announced on 11th July and passed in Lok Sabha on
issues can still be an inhibition. 18th July looks favourable for the aerospace and defence sector in the country. Following
are the highlights of the liberalised budget:
Meagre contribution • Defence allocation pegged to 2,290 billion rupees, which is about 12% more than
from MSMEs that of the previous fiscal year.
• FDI cap was raised from 26% to 49% for domestic defence industry. This is expected
The amended Defence Procurement to attract foreign investment.
Procedure policy has enhanced the • As a part of military modernisation, an additional 50 billion rupees was allocated for
potential for micro, small and medium tendering and eventual purchase of military equipment for all three services. This in-
enterprises (MSMEs) to be part of the cludes 10 billion rupees for accelerating the development of railways in border areas.
indigenisation drive, and to broaden the • Technology Development Fund of 1 billion rupees was set up to aid MSMEs in the
research and development base of the development of defence system.
• The GOI has also set aside 10 billion rupees under the ‘One Rank One Pension’ policy,
country. In spite of this, the contribution
to address pension disparities of ex-servicemen.
of the MSMEs remains meagre. MS-

114 August 2014 | Electronics For You www.efymag.com


industry FOCUS
companies that have the capability to
State initiatives by Karnataka
supply these to the organisation.
Realising the immense options Almost 70% of aerospace operations are based in Karnataka. Perhaps this is what helped
Karnataka to drive itself and become the first in India to come out with an aerospace policy,
opening up with modifying govern-
which was inaugurated by the then defence minister A.K. Antony in 2013. The state plans
ment policies and tenders, domes- to attract investment of ` 600 billion over the next 10-year period in two phases, i.e.,
tic companies that made only small 2013-18 and 2018-2023.
parts have started developing in-house “This policy went off to quick implementation, and was released immediately after the
capabilities. While a large number of inaugural function. It includes incentives for the aerospace sector, and formation of an
foreign companies have already made aerospace park stretching 938 acres. Presently, not only has it been set up, 47 units have
their presence in this space, Indian already been allotted in India. Two companies, Wipro and Swiss-German group Starrag, have
completed setting up the infrastructure and even started production. Of the remaining 45, five
giants like Tata Motors, Larsen & Tou-
firms have started construction, while the rest 40 are mobilising resources,” explained M.N.
bro, Bharat Forge and Ashok Leyland Vidyashankar, president, India Electronics & Semiconductor Association (IESA).
are also trying to get established in this Currently, there is also a proposal to set up common facilities like Centre of Excellence
domain. The government is committed (CoE), which can train people required by the aerospace sector. To ensure that this doesn’t
to cutting down on imports for two get concentrated in Bengaluru, training is also going to be done in north Karnataka in Hubli.
reasons—import is expensive, and the
products and systems are really strate-
gic in nature.
Supporting organisation
Many of the PSUs lack the capabil- Defence Electronics Manufacturers’ Association (DEMA) is an organisation that was
ity to serve this huge demand. For in- formed by 38 small and medium enterprises in and around Pune region that manufacture
stance, Hindustan Aeronautics Limited and/or supply defence-related products. Founded under the leadership of late admiral Mud-
holkar in 1989, the association now covers defence-related organisations and government
(HAL) does not have design capabili-
departments like the DRDO, defence production units, PSUs in defence (HAL, BEL, etc)
ties and does licensed production, but and the Directorate General of Service Tax and Directorate General of Quality Assurance.
only HAL has aerospace capabilities.
This creates a lot of space for the pri- nance, repair and overhaul (MRO) for OEMs. Most major equipment remains
vate companies to step into. aerospace and defence equipment is a in service for two to three decades.
As already mentioned, the mainte- big opportunity for private firms and Though the potential for MROs is

AMETEK® Avionics Power Quality Certification


AMETEK Programmable Power Inc. USA is the world leader in the design and
manufacture of precision DC programmable power supplies, Programmable
AC sources and AC/DC loads in both modular and high power models.

AC POWER SOURCES
Programmable AC Power Capability Worldwide AC Power line simulation supports
Low Power: 800VA to 1,500VA, all relevant Aviation and Aerospace standards
Medium Power: 1,750VA to 15,000VA And RTCA DO-160 MIL-STD-704 ABD0100.1.8 Boeing787 AMD24
High Power: 18,000VA and up Content of the Tests
with • Voltage variations • Voltage modulation
• Adjustable 16Hz to 8KHz max, 1 or 3 phase o/p • Transients • Square waves
• Harmonics, Transients and Arbitrary waveform • Spikes • Inrush current
generation and acquisition • Switching transients • Distorted voltage
• AC, DC, AC+DC output • Ripple voltage • Frequency variations

For Whom:
• Aircraft Manufactures • Subsystem suppliers (Defence, Aerospace)
• Avionics controls and Systems • Air conditioning systems • Water and waste water
• Landing gear systems • Cabin lighting management systems
• Infotainment & passenger seats • Ovens and galley equipment • Door locking and security systems

Other products of interest: Programmable DC Power Supplies and AC/DC Electronic loads, PV Simulator and GRID Simulator
• Power Ratings Range from 30W to 150KW.
• Available with various voltage and current ratings in 19 inch full, half and quarter rack packages with max voltage up to 1100 Volts
and current up to 3000Amps.
Email: sales@eeipl.in ; eehyd@eeipl.in
Authorized Distributors Electronic Enterprises (India) Pvt Ltd Ph: +91-40-23243352/0882/0883/0817

www.efymag.com Electronics For You | August 2014 115


industry FOCUS
the MSMEs to configure systems as per
Government policies relating to A&D sectors
the parameters prescribed by buyers.
The various policies initiated by the government of India have definitely had their own Many of the upcoming projects require
impact on manufacturing, and the sector as a whole. Dr Akhilesh Saurikhia, advisor, Ernst
integration of multiple technologies.
& Young says, “Indian government is trying to support domestic manufacturing through
policy initiatives. Mapping of domestic capacities on supply side at assembly level with Hence, vast opportunities exist for
that of demand will help boost local manufacturing. Product-specific initiatives will yield domestic and foreign MSMEs.
better results.” In order to develop advanced mili-
Let’s take a look at the policies for this sector: tary products there is a need for high-
Industrial Licensing Policy (2012). With the objective of promoting small-scale indus- performance, state-of-the-art test and
tries and new entrepreneurs, a compulsory licensing system for manufacturing defence measurement (T&M) equipment that
equipment was introduced by government of India under the Industries (Development and
satisfies military (MIL) standards in the
Regulation) Act 1951. Any Indian company or partnership can apply for this licence. The
application submitted to the Department of Industrial Policy and Promotion (DIPP) would strategic electronics segment. “T&M
be considered by inter-ministerial committee. Though the process supposedly takes about equipment and solutions for aerospace
six months, currently it takes almost a year for approval. and defence are based on advanced
This policy has faced criticisms due to numerous conditions, conflicting objectives (cre- technology for use in radar instal-
ated with an objective of increasing industrial production in the economy, but restricting lations, electronic warfare, military
activities of industrial units like substantial expansion, production of new articles, etc) and communications, satellites, guidance,
poor follow-up. Also, there was little clarity on the definition of the terms ‘defence equip-
avionics, intelligence, surveillance
ment’ requiring industrial licence and ‘dual-use’ items for civil and defence application. The
list of defence items for licensing is currently under preparation by a joint committee of the and beyond,” says Gautam Awasthi,
DIPP and the Department of Defence Production (DDP). general manager of marketing, elec-
Foreign Trade Policy (2009-2014). Foreign Trade Policy (FTP) or Export Import tronic measurement group, at Agilent
(EXIM) Policy is a set of guidelines and instructions established to govern the import and Technologies India Pvt Ltd. Hence it is
export of goods in India. An export or import can be made by any person only against an a boost for T&M sector too. 
import-export code (IEC) number, unless specifically exempted. Exports and imports are
free except where they are specifically regulated by the 8-digit ITC-HS code (Indian Trade Challenges
Classification based on Harmonised System of Coding). The ITC-HS has two schedules:
rules and regulations for importing are provided by Schedule-I and that for exporting by Procurement procedures. One major
Schedule-II. The drawback here is that the definition of licensing requirements is not clari- issue faced by domestic companies
fied, specifically in the case of software exports. (including government firms) for get-
Defence Procurement Procedure (2013). Defence procurement is governed by the ting involved in the A&D sector in our
Defence Procurement Procedure (DPP), which was first enumerated in 2001, and is being country is the qualification require-
periodically reviewed and revised. The latest policy was released in May 2013. It lays out ments put forth by the GOI towards
a transparent procedure for capital acquisitions by the Ministry of Defence, and has signifi-
domestic firms. Local hardware com-
cantly liberalised and enlarged the avenues and products for discharging offset obligations.
Defence Offset Policy (2012). Defence offset policy was introduced in 2005 in order panies face a tough time to join de-
to leverage the buying power of the country and to achieve greater self-reliance in defence fence projects. The best example is the
production. The revised version is effective from August 1, 2012 and specifies that foreign Network for Spectrum (NFS) project
armament companies that get an arms deal of over three billion rupees must reinvest at by Department of Telecommunication.
least 30% of contract amount into India as offsets. The mandatory criterion for bidding
National Cyber Security Policy (2013). Until 2013, India had no cyber security policy. eligibility in financial front is a turno-
The government of India has started to seriously consider cyber security, which led to the
ver of 25 to 40 billion rupees over the
introduction of National Cyber Security Policy on July 2, 2013. The Department of Electron-
ics and Information Technology (DeitY) is working on setting up co-ordination centres to past three years. On the technical side,
establish both offensive and defensive cyber security capabilities, and these are being very the companies must have deployed a
well funded to the extent of ` 10 billion over a period of next four years. The government specified quantum of equipment over
has also decided to recruit 4500 to 5000 experts to be deployed at independent organisa- a defined period of time.
tions that would take care of India’s cyber security infrastructure. With the kind of expertise Both these prerequisites make lo-
that private players have, the government would definitely want to use it, and hence “this cal companies ineligible even to bid,
policy helps a lot of private players,” says Sunil Ross of Wind River. says Indian industry and business as-
sociations including the Confederation
huge, the government still has to sort sourced components and sub-systems of Indian Industry (CII). This is ironic
out the certification issues related to is a viable business option in A&D seg- as India has been very keen to promote
training the required workforce. The ment. About 50% of the manufacturing local electronic device manufacturers
Directorate General of Civil Aviation opportunities will comprise compo- in order to save on import bill, and
is now in the process of making its cer- nents and sub-systems manufacturing. to avoid any possible security threat
tification equivalent to the European Major defence contractors are usually that may come up when using foreign
Aviation Safety Agency. integrators who procure components, equipment.
Systems integration with out- sub-assemblies and sub-systems from However, as a part of the NFS pro-

116 August 2014 | Electronics For You www.efymag.com


industry FOCUS
ject, Indian Air Force has developed Major contributors to the story
Air Force Network (AFNet) at a cost
 Chris Rao, vice president, United Technologies Corporation Aerospace Systems (UTAS)
of 10.77 billion rupees in collaboration
 Gautam Awasthi, general manager of marketing, electronic measurement group, Agilent
with HCL Infosystems Ltd and Bharat
Technologies India Pvt Ltd
Sanchar Nigam Ltd (BSNL). This gives
 M.N. Vidyashankar, president, India Electronics & Semiconductor Association (IESA)
hope for better involvement of domes-
 Nasser Jariwala, head of business development, Rohde & Schwarz
tic firms in the future.
 Sunil Kottarathil, regional vice president (Defence), Mistral Solutions
Capital investment. Establishing a
 Sunil Ross, account manager, Aerospace & Defence, Wind River India
firm in strategic electronics industry
requires huge capital expenditure dur-
ing initial years, which is a hurdle for industry, we still face many limitations industrial licence. The huge delay
start-ups, small and medium compa- and roadblocks. The following are in granting and renewing of licence,
nies. Time delay in approval processes some of the recommendations of the the complex procedures involved
increases the cost further. industry. and corruption negatively affects the
Technology. The inherent ecosys- Raising FDI. The previously 26% growth of industry, as a lot of extra
tem of India doesn’t support the fast foreign direct investment (FDI) cap was costs are incurred due to the time
adoption of cutting-edge technology. a major turn-down for foreign players overrun. ELCINA association had
Hence, we have to depend on the ex- to enter this industry. This has been requested the government to ensure
pensive technologies and machines increased to 49% in the latest budget that the decision-making process be
from abroad. approved on 18th July. made faster, as MNCs are unable to
Slow tender process. The closure of Ecosystem development. The gov- wait for too long.
tender cycle in Indian defence contracts ernment has to aid the creation of
sometimes takes too long—about 18 infrastructure and adoption of latest The future
to 24 months. In order to encourage technologies required for manufac- According to Gautam Awasthi of Agi-
private players’ active participation turing high-quality components that lent, “Globally, aerospace and defence
in defence opportunities, this should would cater to domestic as well as for- markets are in a growth phase primar-
be kept to within a reasonable ‘start- eign markets. They should encourage ily due to investments by countries like
end’ period. and provide opportunities for Indian India, Russia, China and South East
Testing. Lack of good test infra- design and manufacturing houses to Asia. USA and Europe markets have
structure for strategic electronics is an compete with foreign players. This been consolidating to meet their strate-
issue. Quality labs are limited, which can be achieved by providing govern- gic defence guidance.”
makes them always occupied. The ment incentives or preferences, such as Aerospace and defence market is
government should set up a number of waivers in taxes and duties. expected to reach US$ 248.2 billion
testing centres. Reducing import. Though imme- globally by 2018 as per Aerospace-De-
Tax issues. Duty-free imports and diate reduction in imports is quite fence Electronics-Global Trends, Estimates
high taxes on indigenous products difficult, channelised imports are and Forecasts, 2011 to 2018. Geographi-
make the vendors prefer foreign equip- important to boost self-reliance in cal analysis shows that the highest
ment over Indian brands. There is a strategic electronics. A clear road- CAGR of 14.2% is anticipated from
need for elimination of indirect taxes map should be created for import Asia-Pacific region during the analysis
in defence field. reduction by the Ministry of Defence, period, 2011- 2018. 
Ambiguity of policies. Though the which should be published and au- We foresee that electronic warfare
government is coming up with policies dited by the Comptroller and Auditor will continue its growth and more in-
and tenders to promote A&D indus- General (CAG) of India, with aggres- vestment would be made in building
try, many of these do not have a clear sive targets for the information and a robust communication backbone.
framework. For example, in the case of communication technology in educa- Satellite technologies will also trigger
dual-use equipment, there arise issues tion (ICTE) sector. growth for the sector. RF surveillance is
like whether or not they require an in- Investments in components and a growing trend in keeping the country
dustrial licence. The recently modified composite. It is important to invest in safe. Radars will continue to evolve and
industrial licensing policy is expected and promote components and com- within that there will be subsidiary
to solve this matter.  posites in India. No ‘end-use’ restric- trends like transmitter-receiver mod-
tion should be imposed so as to ensure ules. 
Recommendations of more participation of Indian firms in
industry strategic electronics.
The author is a technical correspondent at EFY. This
report from her is based on inputs from a recent
Despite the positive approach of gov- Speed up decision-making: It of- article on defence electronics published in EFY’s
ernment towards developing A&D ten takes up to five years to get an Electronics Bazaar magazine

www.efymag.com Electronics For You | August 2014 117


industry nEWS
 corporate news  new ventures  calendar  new appointments

Central budget encourages In Focus


indigenous manufacture
Rakesh Garg is the new DoT secretary
In the Central government’s budget
Rakesh Garg has been appointed as the new secretary of the Department of
announced recently, there was no Telecommunications (DoT). He was earlier serving as the principal secretary in Uttar
change in the customs and excise Pradesh. In his Central deputation, Garg served as the additional secretary in the
duties applicable for electronic com- Ministry of Tourism and joint secretary at the Department of Food and Public Distribution.
ponents, except for the removal of
(a) the special additional duty (SAD) GE appoints Munesh Makhija as new MD, GE India Technology
on components used in manufactur- Munesh Makhija has been appointed as the managing director of GE India Technology
Center and chief technology officer. Effective immediately, he takes over this role from
ing PCs and (b) the customs duty on
Dr Gopichand Katragadda. Munesh will be based at the John F. Welch Technology
LCD/LED panels of 48.26cm (19-inch) Center in Bengaluru and will lead GE’s R&D efforts in India.
and below and on cathode ray tubes
(CRTs). But to create a level playing Manmohan Handa becomes the new director of BEL, Bengaluru
field for domestic electronics manufac- Manmohan Handa has been appointed as the new director of the defence PSU, Bharat
turers, taxes have been imposed on the Electronics Limited, Bengaluru complex. Prior to this, he was working as the general
import of some telecom and IT prod- manager of BEL’s missile systems strategic business unit.
ucts. According to ELCINA president
Subhash Goyal, this will encourage the Vishal Sikka becomes the new CEO of Infosys
manufacture of telecom products. Infosys named Vishal Sikka, a former board member of Germany-based software
With the exemption of colour multinational SAP, as its next managing director and CEO. He is a PhD from Stanford
University. He is the first MD and CEO from outside the group of seven founders of
picture tubes from basic 10 per cent Infosys in its 33-year history.
customs duty to make cathode ray TVs
cheaper, domestic production of these
TVs may grow significantly, giving Opening the doors further for for- in the defence sector is sure to have
better opportunity to domestic compa- eign investors in the defence sector, a percolating effect in electronics
nies like Videocon, Weston India, Mirc the level of foreign direct investment manufacturing,” says T. Vasu, direc-
Electronics and Salora International, has been raised to 49 per cent from tor, Tandon Group.
which manufacture CRT and LCD the existing 26 per cent. “Increas-
TVs. The duty concession will also ing foreign participation but with Electronics sector getting
revive manufacturing of TVs in the Indian management control and a investment proposals
SME sector. thrust to indigenous manufacturing At a time when the Indian government
is striving to push electronics manu-
facturing in the country, here is some
encouraging news. The government
has received investment proposals of
` 800,000 million till the month of June.
This includes fresh proposals worth
` 50,000, according to the Department
of Electronics and Information Tech-
nology (DeitY). The total number of
investment proposals by the end of
June stand at 41.
The government has also provided
its consent for setting up of an incuba-
tion centre in Delhi, which will work to
support the start-ups in the electronics
design and manufacturing sector. Soft-
ware Technology Parks of India (STPI),
Finance minister Arun Jaitley on his way to Parliament to present Budget 2014 in collaboration with industry body

118 August 2014 | Electronics For You www.efymag.com


industry nEWS

Calendar of Forthcoming Electronics


Fairs/Exhibitions/Seminars/Events
Name, Date and Venue Topics to be covered Contact address for details
IPCA-EFY Expo 2014 Exhibition for all OEM Indian Printed Circuit Association, Bengaluru
August 6-8, 2014 manufacturers, LED, solar, Phone: (080) 25210109, 25210309
Auto Cluster Exhibition Centre automobile, medical, defence E-mail: ipca@ipcaindia.org
Pune and R&D material suppliers
and end-users

NEPCON South China 2014 sourcing platforms for Tim Wang


August 26-28, 2014 South China’s electronics Phone: +86-21-2231-7016
Shenzhen Convention & manufacturing industry E-mail: tim.wang@reedexpo.com.cn
Exhibition Center, China Web: http://www.nepconchina.com/ehome/

IFA 2014 A global trade show for Messe Berlin GmbH, Messedamm 22
September 5-10, 2014 consumer electronics and Phone: +49-30-3038-2217
IFA Exhibition Grounds, Berlin home appliances, presents E-mail: vonderropp@messe-berlin.de
the latest products and Web: http://b2b.ifa-berlin.com/
innovations

ELCINA-EFY Awards Awards for excellence in EFY Enterprises Pvt Ltd


September 12, 2014 electronics hardware Phone: 26810601/2/3, +91-8800094213
India Habitat Centre, New Delhi manufacturing and services E-mail: efyexpo@efyindia.com

3rd Electronics Rocks 2014 A platform for design EFY Enterprises Pvt Ltd
October 10-11, 2014 engineers, R&D engineers, Phone: 26810601/2/3, +91-8800094213
Nimhans Convention & Exhibition entrepreneurs, academicians, E-mail: electronicsrocks@efyindia.com
Centre, Bengaluru hackers and hobbyists Web: www.electronicsrocks.com/
including talks, workshops,
discussions, product launches
and design challenges

ElectronicAsia In Conjunction with ‘HKTDC Hong Kong Trade Development council (HKTDC)
October 13-16, 2014 Hong Kong Electronics Fair Phone: (852) 2584 4333
Hong Kong Convention and (Autumn Edition)’ highlights E-mail: exhibitions@hktdc.org
Exhibition Center, Hong Kong solar, displays and key Web: http://electronicasia.com/ex/05
components for smart devices

OSI Days 2014 Open Source conference in EFY Enterprises Pvt Ltd
November 7-8, 2014 Asia that aims to nurture Phone: +91-088000 94211
NIMHANS Convention Center and promote the open source E-mail: atul.goel@efyindia.com
Bengaluru ecosystem in the sub-continent

Electronica/Productronica 2014 Electronic components, MMI India Pvt Ltd, Mumbai


November 11-14, 2014 production equipment, Phone: (022) 42554700, 42554723
Munich, Germany systems and applications E-mail: Andrea.dsouza@mmi-india.in

Intersolar India Exhibition and conference for MMI India Pvt Ltd
November 18-20, 2014 the solar industry featuring Phone: (022) 42554700
Bombay Exhibition Centre, photovoltaics, PV production E-mail: brijesh.nair@mmi-india.in
Mumbai technologies, energy storage
and solar thermal technologies

2nd EFY Expo- Western India For manufacturers, EFY Enterprises Pvt Ltd
Edition 2014 engineers and traders to Phone: 26810601/2/3, +91-8800094213
November 26-28, 2014 source electronics components, E-mail: efyexpo@efyindia.com
Bombay Convention & Exhibition products and services and to Web: www.west.efyexpo.com
Centre, Mumbai find latest offerings and dealers
and distributors for products

LED Expo 2014 Exhibition and summit on MEX Exhibitions Pvt Ltd
December 5-7, 2014 LED lighting products and Phone: +91-9312285142
Pragati Maidan, New Delhi technology E-mail: info@themediaexpo.com

2015 International CES A mega consumer electronics Consumer Electronics Association


January 6-7, 2015 event where new innovations Phone: +1 703-907-7605
Las Vegas Convention Center and technologies are Web: www.cesweb.org
Las Vegas, USA showcased

Electronics For You Expo 2015 Covering complete electronics EFY Enterprises Pvt Ltd
February 26-28, 2015 ecosystem, including Phone: 26810601/2/3, E-mail: efyenq@efyindia.com
Hall 7 (A, B, C, D, E, F, G, H) innovation, manufacturing, Web: www.efyexpo.com
Pragati Maidan, New Delhi design and sales

EFY Awards To give recognition to the EFY Enterprises Pvt Ltd


March 13, 2015 leading enterprises and Phone: 26810601/2/3, +91-8800094213
Bengaluru individuals in the Indian E-mail: efyawards@efyindia.com
electronics field Web: www.efyawards.com

International CES Asia, 2015 Tech powerhouses to Shanghai New International Expo Center (SNIEC),
May 25-26, 2015 innovative startups, Shanghai, China
Shanghai New International 3D printing, robotics, Phone: 703.907.7603
Expo Center (SNIEC), China sensors, the Internet of E-mail: afried@ce.org
Things and wearables
Look up under ‘Events’ section in www.electronicsforu.com for a comprehensive list

Since this information is subject to change, all those interested are advised
to ascertain the details from the organisers before making any commitment.

www.efymag.com Electronics For You | August 2014 119


industry nEWS

Snippets positive changes coming in as the new


government headed by Prime Minister
Narendra Modi settles down to tackle
Tata launching solar plans with new financial model issues affecting economic growth of
Tata Power Solar, an Indian solar manufacturer and developer, is all set to launch the country. Issues like high inflation
a nationwide initiative, which may open the access to solar finance for residential and soaring prices due to rupee fluc-
use. Tata has collaborated with one of the largest loan and finance companies, Bajaj
tuation is also a constant worry for the
Finance, to offer a monthly instalment payment option for solar power users, without
interest. This national finance programme will be rolled out across 20 cities in the first industry.
phase and slowly expanded to other parts of the country. Manufacturing of electronic hard-
ware in the country has suffered on
India explores desert renewable energy strategy account of high cost of power and
The Indian government is exploring the possibility of the country’s deserts finance, high transactional costs and
providing the ideal location for a new wave of wind and solar energy projects. poor base of supply chain, thereby
Reportedly it has started to work on assessing the viability of mega-scale increasing dependence on imports.
renewable energy projects in the Thar Desert in Rajasthan, Rann of Kutch in
At present, around 65% of the current
Gujarat and Ladakh in J&K.
demand for electronic products is met
Philips to set up standalone LED company by imports and the remaining, mainly
Royal Philips will soon start the process of combining its Lumilets (LED low-end products, are manufactured
components) and automotive lighting businesses into standalone company within locally. According to IESA-Frost &
the Philips Group. This company will explore strategic options to attract capital Sullivan’s Indian ESDM Market report,
from third-party investors for this business. It intends to remain the shareholder the ESDM (electronic system design
and customer of the new company, and will continue the existing innovation
and manufacturing) industry was es-
collaboration.
timated to be US$ 68.31 billion in 2012
and by 2015 it is expected to touch US$
India Electronics and Semiconductor through a drive called ShodhYatra 94.2 billion.
Association (IESA), will set up the (search trip) and brings rural innova-
incubation centre. According to DeitY, tion to light to help mankind, besides Foreign direct investment
“The total project cost approved for mobilising ideas of technology stu- policy clarified
assistance is ` 211 million. STPI will set dents from hundreds of colleges across As per extant FDI policy, FDI up to
up an incubator facility of 930 square India through techpedia.in 100% under the automatic route is
metres (10, 000 square feet) as part of Through this unique relationship, permitted in B2B e-commerce activi-
this project. At least 50 start-ups will NIF will emphasize complete product ties. The present policy does not permit
be supported over a period of 5 years.” development, while ST will validate retail trading, in any form, by means of
and develop electronic solutions for e-commerce, for companies with FDI
Plans to boost technology some of the innovative ideas and engaged in the activity of single/multi-
innovation in rural India convert them into value-added tech- brand retail trading. The following
STMicroelectronics, a global semi- nologies/products that can potentially announcement in respect of FDI with
conductor company, has announced make a difference to the masses. STMi- reference to manufacturing sector was
a strategic cooperation with India’s croelectronics and the National Inno- made by finance minister during his
National Innovation Foundation (NIF) vation Fund urge talent to come across recent Budget speech:
under the aegis of the Department of geographical barriers and encourage “FDI in the manufacturing sector
Science and Technology, government formation of innovation clusters across is today on the automatic route. The
of India, to support technological in- the country. manufacturing units will be allowed
novation in remote areas of India and to sell their products through retail
create a marketplace for the result of Inverted duty, infra issues including e-commerce platforms
that innovation. affecting IT hardware sector without any additional approval.”
The close relationship with ST will Facing challenges like inverted duty Total FDI equity inflows during April
help NIF and other network members structure and infrastructure bottle- 2000 to April 2014 in e-commerce into
convert technological inventions con- necks, IT hardware industry has urged India is at US$ 37.10 million, being
ceived within the ‘Honey Bee’ network the new government to take correc- 0.02% of the total FDI equity inflows
of like-minded individuals, innovators, tive measures to bring back growth of US$ 219,286 million. No targets
farmers, scholars, academicians, policy in the sector that has been witnessing are fixed for FDI inflows, nor is an
makers, entrepreneurs and NGOs, flat growth in the last few years. The assessment of future inflows possible,
into the mainstream business. Honey existing players are now hopeful of as FDI is largely a matter of private
Bee collects ideas from all over India business decisions.
Check efytimes.com for more news, daily
120 August 2014 | Electronics For You www.efymag.com
new products
Recently introduced in India, From near and far

neers can use the High voltage insulation testers


TEST & MEASUREMENT 4-port VectorStar Metrel has launched the MI 3200 Tera
to conduct de- Ohm 10kV, a digital diagnostic insula-
Vector signal generator tailed TMS dif- tion tester. It enables high insulation
Rohde & Schwarz presents its new ferential analysis resistance measurements up to 10TΩ,
R&S SGT100A, the smallest and fastest from 70kHz up step voltage tests, PI, DD and DAR
vector signal generator that covers the to 145GHz in a single sweep using calculation, capacitance measurement
frequency range from 80MHz to 6GHz. Anritsu’s proprietary DifferentialView, and withstands voltage tests. The large
Specially optimised for use in produc- which offers the ability to provide a LCD screen enables real-time graphs to
tion test systems, it is equipped with calibrated TMS signal to differential be displayed. Results can be stored and
an integrated baseband generator that devices and has the capability to sweep downloaded to a computer via USB
supports a maximum bandwidth of phase for full analysis of devices. or RS232 connection with
160MHz. Using the R&S WinIQSIM2 Anritsu Corporation, Bengaluru the help of the optional
PC software, the generator can quickly Phone: 09310666466 software. Major applica-
Website: www.anritsu.com tions include testing in-
sulation resistance of
Inspection system rotating machinery,
Omron launched a new inspection cables, transformers,
system using 3D measurement, called HV generators, surge
and easily deliver test signals for all VT-S500, which is Omron’s solution to arresters, and effective meas-
major digital standards such as LTE, providing next-generation, 3D inspec- urements in high-noise environments
3GPP and WLAN IEEE 802.11ac. tion capability at minimal cost. With such as charged sub-stations and
Featuring frequency and level good 3D image processing, the VT-S500 switchyards.
switchover times of typically 240μs, the accurately analyses the topographical Rishabh Instruments Pvt Ltd, New Delhi
R&S SGT100A is the fastest instrument features of solder fillets to ensure PCB Ph: 0253-2202202/028
of its type on the market. The short quality and reliability. Advanced soft- E-mail: tmi@rishabh.co.in
switching times of just a few micro- ware, capable of absorbing production
seconds between the various digital inconsistencies and noise, creates adapt- COMPONENTS
test signals speed up test sequences. In able and stable inspection programs.
addition, the instrument has been op- By minimising program teaching and Coil driver ICs
timised for minimum operating costs. tuning times, the VT-S500 greatly Intelligent coil-driver ICs for mono-
Rohde & Schwarz India Pvt Ltd, New Delhi reduces the inspection costs tra- and bi-stable EM actuators with 8V
Phone: 011-42535400 ditionally associat- to 36V supplies launched by iC-Hauz
E-mail: customersupport@rohde-schwarz.com ed with automated GmbH are available through its India
optical inspection sales partner Omniscient Electronics.
Vector network analyser (AOI). With ultra The 32-bit output driver, iC-DY6818,
Anritsu introduced the MN469xC test high-speed inspec-
set for its VectorStar MS4640B vector tions and dual-lane
network analyser (VNA) family that availability, cycle
comes with the inherent advantages times have reduced
of the VectorStar platform, including and productivity
one of the industry’s best frequency has increased. The VT-S500 is available
coverage, True Mode Stimulus (TMS) with camera magnifications of 10 or 15
accuracy and performance, and 4-port microns, and is capable of processing features a serial SPI interface for the
measurement applications. The 4-port PCBs up to 510 mm×610 mm (in single- controls via a 3.3V or 5V microcon-
VectorStar provides active device engi- lane applications) or 510 mm×300 mm troller. The integrated 32-bit shift regis-
neers with signal integrity and best-in- (in dual-lane applications). ter performs the conversion from serial
class measurement results for improved Omron Electronics, Mumbai to parallel. A received 32-bit data word
simulation tools and greater confidence Phone: 022-71288400 is uploaded to an internal register,
in differential device designs. Engi- Website: www.omron-ap.co.in which then operates the 32 push/pull

www.efymag.com Electronics For You | August 2014 121


new products
output drivers. The output drivers’ deep sub-micron BUS) systems, engine control modules,
separate supply VBB can range from processors. The powertrain electronics, anti-lock brakes,
8V to 36V. The adjustment to typical 20A and 30A airbags and other safety circuits. They
industrial 24V signal levels is thereby SWIFT DC/DC are also suitable for use in industrial
provided. Further, mono- and bi-stable buck converters CAN bus applications that are suscepti-
relays, valves, solenoids, small DC mo- feature current and temperature ble to damage due to lightning-induced
tors, as well as LED chains can easily monitoring also. transients or ESD.
be controlled. Texas Instruments, Bengaluru Littlefuse, Noida
Omniscient Electronics Pvt Ltd, Bengaluru Phone: 080-25586277 E-mail: nvinaik@littelfuse.com
Phone: 080-28611874/950 Website: www.ti.com/ww/in/
E-mail: info@omniscientelectronics.com Super pulse capacitors
Backplane connectors EVE Energy launched its super pulse
Data converter FCI announces the capacitors that can store and discharge
Maxim Integrated launched a flexible ExaMAX high- pulse current within a temperature
data converter, which is ideal for base speed backplane range of -40ºC to +85ºC. It is the ideal
stations, industrial control and auto- connector family. power source for long-term standby and
mation. Engineers can mix and match These high-speed high cur-
20 ADCs, 20 DACs or 20 high-voltage connectors are de- rent pulse
digital I/O pins in any order using the signed to deliver superior 25Gb/s applica-
MAX11300 with the new mixed-signal electrical performance while offering a tions. EVE’s
PIXI technology. It is the industry’s migration path to 40Gb/s. These also unique de-
first configurable 20-channel, -10V feature a revolutionary beam-on-beam sign is based
to +10V high-voltage mixed-signal contact interface. They minimise the re- upon the
data converter. It is ideally suited sidual stub for improved signal integ- latest technology to ensure safety and
for complex applications requiring rity performance, compared to typical reliability.
multiple mixed-signal operations like blade-on-beam contact structures and SM Electronic Technologies Pvt Ltd, New Delhi
base stations, and industrial control provide exceptionally low mating force Phone: 011-25101136
and automation. Graphical user in- while maintaining excellent contact. E-mail: sales@mysmindia
terface software that comes with the The ExaMAX portfolio is available
MAX11300 PIXI allows rapid drag- in 2-pair, 3-pair, 4-pair and 6-pair ver- SOLAR
and-drop configuration of the device. sions with various column counts.
Maxim India Integrated Circuit Design Pvt Interface Connectronics Pvt Ltd, Bengaluru Multi-purpose solar lantern
Ltd, Bengaluru Phone: 080-23374772, 23374773, 23374774 Gautam Solar launched its unique solar
Phone: 080-79415800 E-mail: sales@icpl.co.in multi-purpose lantern across India. De-
E-mail: sales@maximintegrated.com signed for urban users, the product is a
Diode arrays trailblazer, and can be used as a torch,
Buck converters Littelfuse has introduced the SM24CA- a hanging light, a
Texas Instruments has introduced NA series of 200W TVS diode arrays study lamp and
18V, 20A and 30A synchronous DC/ for protecting the automotive controller a mobile charger.
DC buck converters with the PMBus area network (CAN) bus from damage The lan-
interface. The SWIFT TPS544B20 due to electrostatic discharge (ESD), tern is fit-
and TPS544C20 converters feature electrical fast transients, and other ted with
small QFN packages and integrated over voltage transients. These arrays 3W LED lights, a 3W solar panel and
MOSFETs to drive ASICs in space- absorb repetitive ESD strikes above 6 V-4.5AH battery that requires four to
constrained and power-dense appli- the maximum level specified in the five hours of charging. Once charged,
cations in various markets, including IEC61000-4-2 international standard the lantern can effortlessly run for eight
wired and wireless communications, without performance degradation. They hours on single brightness, six hours on
enterprise and cloud computing, and safely dissipate 3A of surge current medium brightness and four hours on
data storage systems. The converters with very low clamping full brightness. The lantern is available
simplify power conversion and speed voltages. These AEC- in two trendy colours—yellow and
the power supply design process. The Q101 qualified devices red—to spruce up any corner of your
highly integrated converters feature help to maximise the home or office.
0.5% reference voltage accuracy and reliability of automotive Gautam Solar Pvt Ltd, New Delhi
fully differential remote voltage sens- electronics applications Phone: 1800-532-0800/ 09313314063
ing to meet voltage requirements of like drive-by-wire (CAN E-mail: solarlights@gautampolymers.com

122 August 2014 | Electronics For You www.efymag.com


LETTERS

RC Helicopter From Facebook: EFY’s Electronics Design Community


I need a small remote-controlled heli- Very good customer care service! I just informed Customer Support team that
copter/drone project. Let me know the the magazine I purchased from the market had missing pages. I got a new EFY
issue if this project was published in magazine totally free with no shipping charges. Thank you EFY team!
EFY. Prasad Kirkire
Soory Shakti Kushwaha EFY: Thanks for the appreciation!
Through e-mail  I noticed a typographical error on your cover page. The pound sterling sym-
EFY: You may see ‘RF-Controlled Air- bol is £ and not # as shown.
craft’ project published in May issue. Ajay Rao
EFY: Thanks for pointing out the error! We appreciate your eye for detail.
EFY Directory  Let me know the availability of any good books on batteries.
Subhadip Ghosh
I want to know the details of India’s EFY: We published some time ago a book titled ‘Batteries’ which includes
leading home automation companies carbon-zinc, lithium, lead-acid, fuel and nuclear-cell batteries, along with some
including their names and contact charger circuits. Please contact info@kitsnspares.com or visit www.kitsnspares.
details. I am planning to set up a busi- com
ness in modular switches, video door-  Please suggest me some projects based on MATLAB, LabView and micro-
phones and home automation and controllers for my final-year project.
security systems. Do you have any di- Mak Mali
EFY: A list of MATLAB-based projects in EFY was published in Letters section
rectories or portals to get these details?
of June issue. Please look up ‘Dual-Priority Encoder Using LabView’ published
Sumon in July issue. Almost every issue of EFY now covers microcontroller-based
Through e-mail projects. Contact info@kitsnspares.com for back issues.
EFY: Yes, we have EFY directory
available in print version (called EFY
Yellow Pages) as well as online portal ‘Spot An Error’ Award Winners
(www.eleb2b.com). You can find rel-
In eStyle First Look section published in June issue, ThinkCentre E73z is
evant information from the portal by
introduced, which is currently not available in India and the specs are of
typing the exact product name in the ThinkCentre M73z instead of E73z. Also, the image shown is different from
search box and clicking Search button. the one present on the Lenovo website.
For the print version, contact info@ Sridhar Bukya
kitsnspares.com Through e-mail
In ‘Quiz Game Controller’ project published in July issue, the value of RNW2
Digital Image Processing is wrongly printed as 100E instead of 200E in the schematic Fig. 2.
I have been reading EFY for the last Bhaskar Pandey
few months. I want some articles on Through e-mail
digital image processing using MAT- In eStyle buyers’ guide, published in June issue, under Asus Gaming laptop,
LAB and Arduino. it’s wrongly printed as 3GD DDR5 Nvidia GeForce graphics card instead of
S.K. Khaja Vali 3GB DDR5 Nvidia GeForce graphics card.
Through e-mail Arjun
EFY: Please see ‘Colour-Sensing Ro- Through e-mail
bot with MATLAB’ project published
in February issue besides ‘Building EFY: You may look up Arduino-based
Image-Processing Embedded Systems robotic projects ‘Namaste Robot With
Errata
Using Python’ project in this issue. Voice’ (April 2014), ‘Soccer Robot’ In ‘USB LED Light Cum Battery
(January 2014) and ‘Arduino Android Charger’ circuit published in July
Robotics Projects Robot’ (December 2013). You can issue, please read the part number
of T1 as IRF820A in Fig. 2 and
I am a newbie to robotics and trying purchase digital versions of these EFY
parts list instead of IRFZ820A.
to learn the basics by myself. It would issues from www.efy.in or the print
be a great help if you could publish an versions from www.kitsnspares.com ment. Can you help?
article providing step-by-step guidance Kokane Vivek
for robotics using Arduino, Raspberry Remote for Electrical Through e-mail
Pi or embedded system. Equipment EFY: Please see ‘31-Channel RF Remote
Shubham Jain I want a remote control circuit that can Control’ project published in March
New Delhi control all domestic electrical equip- 2013 issue.

www.efymag.com Electronics For You | August 2014 123


Run Pronterface software. Once
the software is up, it will look like as
shown in Fig. 1. Select the COM port
your 3D printer is connected to and
then set the baud rate to 250000 (as Fig. 5: Slicing settings
shown in Fig. 1). Next, click

Q. We have been able to assemble


the Prusa-Mendel 3D printer. The
on the Connect button. You
will see message in the right
bootloader and firmware are also burnt column of Pronterface indi-
in the Sanguinololu board. But we could cating that the printer has
not print anything using Pronterface soft- successfully connected, as
ware. Please help us with complete steps. shown in Fig. 2.
Yogesh Once connected, you can
Through e-mail use Pronterface to manually
control the x, y Fig. 6: Draging .stl file
and z axes, as
shown in Fig.
3. You can also
manually con-
trol the extruder
motor using
Pronterface, but
be sure that the
Fig. 1: Setting COM port and baud rate heater is turned
on before doing
so. The distance Fig. 7: Loading G-code file
and speed of the
manual control is set right Drag your .stl file of the object you
below the Extrude button. want to print in the box shown in Fig. 6
To set the temperature and click on the Export G-code button
of the nozzle or heat bed, and your G-code will be ready to load.
use the pull-down menu Your 3D printer uses G-code to know
and select the temperature what to print. The slicing program will
and then press Set button, convert a stereolithography (.stl) file of a
Fig. 2: Successful connection to 3D printer as shown in Fig. 4. To turn 3D model into the necessary G-code that
the heating off, simply your printer can understand. Once the
press respective Off but- file has been exported into the needed
ton. You can monitor the G-code format, you can open that file in
temperature of the nozzle Pronterface for printing.
and bed by selecting the Open the G-code by navigating File
Watch option and then menu and then clicking Open. Browse
viewing the graph of real- the folder you exported the G-code file
time temperature value. into and select that file and then press
Fig. 3: Manual control of 3D printer Or, you can press Check OK. When Pronterface loads the file it
Temp to view the actual will appear on the graph in the graphi-

A. If you have done the Fig. 4: Setting the temperature temperature in the console
mechanical assembly for nozzle and heat bed on the right of Proterface.
cal user interface, as shown in Fig. 7.
Now you just have to click on Print on
and software upload, major Now, from the pull- the Pronterface toolbar and your printer
task is over. Now you just have to use down menu in the toolbar, select Set- will start printing the 3D object, layer
Pronterface software to print any 3D tings and then choose Slicing settings, by layer.
object, which is straight-forward. Start as shown in Fig. 5. This will open the
by connecting your 3D printer to a com- program Slic3r. Answers compiled by EFY technical editor, Ankit
Gupta. Letters and questions for publication
puter that has Pronterface software in- If this is the first time you are open-
may be addressed to Editor, Electronics For You,
stalled already, via USB cable. Connect ing Slic3r then you will be prompted D-87/1, Okhla Industrial Area, Phase 1, New
the ATX power supply to the 3D printer with the Slic3r configuration wizard. Delhi 110020 (e-mail: editsec@efy.in) and should
and switch it on. Select Cancel on this wizard. include name and address of the sender

124 August 2014 | Electronics For You www.efymag.com


interview

There is also a major shift in the


software controls happening in T&M
Sudhir Tangri, country general manager, Keysight Technologies India Pvt Ltd,
speaks with Rahul Chopra and Pankaj Vashisht of EFY on what transforms test
and measurement equipment. On September 19, 2013, Agilent Technologies
announced plans to separate into two publicly traded companies through a
tax-free spin off of its electronic measurement business. The new company,
Sudhir Tangri
Keysight Technologies, began operating as a wholly-owned subsidiary of Agilent country general manager,
on August 1, 2014 with a full separation anticipated in early November 2014 Keysight Technologies
India Pvt Ltd

Q
What changes do you see from the measurement side in
the industry?
An important change that we see in the industry is the
You can actually do a dual-window zoom and all other nice
user interface we are accustomed to in consumer electronics.
The interesting thing is that, this same instrument was being
transition of measurement algorithms into software. Earlier sold ten years ago with a monochrome screen and a keyboard.
many of these measurement algorithms were in the hardware. Today it only has a screen with few buttons here and there.
Now we are transitioning them into software in order to make
them more versatile and flexible. As more new applications
emerge, algorithms in software will allow us to easily accom-
modate those applications and their platform measurements
Q
What top key technology shifts today define the future of
T&M equipment or products?
One definitely is the increase in the wireless data being gen-
by simply making some changes in that algorithm. erated, which will continue. In aerospace and defence industry,
the wireless data is very critical. It is becoming even more

Q
Which is preferable: traditional PC environments or FPGA-
based platforms?
There are certain specific areas where we cannot work
prominent from a real-time scenario. From material or devices
stand-point, new materials are getting invented, like curved
glasses. There is a major inflection point that is happening in
with FPGAs, like in cases where codes must be closed and the industry because so much research is happening in mate-
hidden for security reasons. Another example is in industrial rial science at an accelerated rate. This was not the case earlier.
automation, where there is not much need for complex algo- Then there is the trend of systems that are instrument-
rithms, but these need to be fine-tuned based on the require- aware. This means that you have a built-in instrument in the
ments. In these cases, you can program the FPGA for the system to do a health check with a satellite above. So this is one
measurement algorithm and use the open FPGA. shift where you need miniaturised and very versatile instru-
mentation. There is also a major shift in the software controls

Q
What challenges do growing technologies like Internet of
Things present before the T&M industry?
happening in T&M. When we say software control, it is not just
algorithms, because there are a few algorithms that cannot be
Looking from a technology standpoint, IoT fundamentals implemented in software. They are very material specific, and
are composed of two major concepts. One concept focuses on you have to have that algorithm implemented in hardware, like
devices, while the other focuses on communication between millimeter wave algorithm, depending upon the frequency.
them. Whether it is wire-line or wireless communication, there
is a very clear phenomenon happening worldwide, that the
amount of data will continue to grow. The amount of data
may go up over a million times in the coming years, which
Q
What kind of T&M products are designed for markets like
India?
Agilent has various products for emerging markets. For
will create the requirement for tools that can simulate this instance, in cases where you do not have the physical instru-
data and thus allow you to design your networks accordingly. ment, you can virtually connect instruments that can take
Second, there are complex intelligent IoT devices coming in. measurements and then move on to solve them. We have a
These devices have a lot of material science going into them. product called Benchview, which creates a virtual instrumen-
These require a set of state-of-the-art characterisation tools tation setup on your desktop. It has special significance in
and measurement instruments. emerging markets where customers are cost-sensitive.
Let us take a typical example of a college with 20 students

Q
Till what level do you see touch-screen integration in
equipment and in industries?
who have to do a practical. Now, it might not be prudent for
a college to invest in 20 boxes. They can probably go for one
Our S-series oscilloscope is the first instrument on the or two boxes and then use Benchview to provide access to
planet with a capacitive touch, just like our smartphones today. everyone. 

126 August 2014 | Electronics For You www.efymag.com


interview

Limitations are paving the way for


ultrasound-based sensors
The way people interact with the computer in a natural way has led to
the evolution of natural user interfaces such as gesture, motion and
touch. Sneha Ambastha of EFY spoke to Anup Tapadia, the founder Anup Tapadia
founder,
of TouchMagix, on the subject TouchMagix

Q
What are the fundamentals of gesture recognition?
From the physical point of view, there is an input to the
system and the resulting output from the system. The input
become possible only due to these. These use reflective light
to compute the depth of information. There is a new range of
sensors coming up where people are using ultrasound, which
can be in the form of a person being tracked completely, a can actually allow low-power gesture sensing for very simple
person’s hand, a person’s fingers or tracking the special emo- gesture recognition applications.
tions of a person to capture what the user is trying to do. The
output can be in the form of a display, sound or interface like
the actuators. Nowadays, there are dispensers or smell creators
which trigger another dimension of a human gesture interface.
Q
What are the limitations to the use of different types of
new sensors?
The structured light-based 3D sensors cannot operate
under high infrared light conditions, because they do infra

Q
What are the major components that help enable gesture
control and motion sensing?
elimination that needs to be visible to the capturing sensors.
That is why these sensors cannot be used in an outdoor envi-
The first type of sensor is what is inside the device and ronment or a mobile kind of platform.
allows the motion of the device itself to be used as a gesture.
These are primarily accelerometers, 9-way or 12-way, etc. The
second are optical systems or non-optical gesture tracking
systems like the front camera of a mobile phone or something
Q
How can we overcome the limitations to make better sensors?
In the MotionMagix sensor we have a photo diode which
does ambient light detection, correction and elimination.
like what Microsoft is using, a Kinect-ware. This helps us ensure proper control of the camera under
different lighting conditions. Also, we have a coating on the

Q
What are the other techniques for gesture tracking?
There are ultrasound wave sensors and radio-frequency
surface of these sensors to resolve the dust prevention issues.
TouchMagix sensors are engineered for industrial use and are
space-gesture sensors. There is an experiment that uses the not much affected by humidity or temperature.
Wi-Fi signal and the change in Wi-Fi signal to recognise what
gesture a user is performing.
Q
What kind of challenges an engineer would face while
designing a component?

Q
What is referential gesture interaction?
Consider using the reference of the screen in order to in-
teract with the screen. For example, if I move my hand, there
The key challenge is definitely to know how a sensor would
work in different environments. MotionMagix sensor can not
be used in a night club as the adaptation time for the sensor is
would be a cursor that would move on the screen and, when not built for flashing lights. Adding a photo diode and an opti-
I move my body, there would be a virtual person mimicking cal illumination correction or feedback loop allows us to have a
my gesture. This is a referential gesture tracking system. better control over the ambient illumination and lighting.

Q
What is immersive gesture interaction?
In this type of gesture recognition technology there is no Q
Apart from gesture and motion sensing what other tech-
nologies do you use?
cursor or reference. Imagine a projection on the floor with a Other than the features enabled through sensors, nearly 70-
football in that projection. You just have to go and kick that 80% of the features like projection scheduling, projection correc-
football. So there is no reference on the screen, however, your tion, remote management, etc are the software enabled features.
foot itself acts as a reference to the football on the screen. So
the system would respond to my gesture even when it is
performed right next to the screen. Q
What are the resources that can help the young engineers
know about these new technologies and the components?
There is an online global research community, called NUI

Q
What new sensors have been introduced in recent years?
Time of flight sensors and structured light-based sensors
are the two most popular types of sensors. 3D sensing has
Group. Then there is Open NI framework (now discontinued)
which people can use to learn the different algorithms used on
3D cameras for gesture tracking. 

128 August 2014 | Electronics For You www.efymag.com


interview

Embedded forms of USB


will be very important for
connecting modem chips
to baseband processors
Some time ago, Dilin Anand from EFY spoke to Terry Moore, Terry Moore
CEO, MCCI
CEO, MCCI, a system engineering company which specialises
in delivering USB system software to tier-1 silicon or semiconductor firms. MCCI chaired the
committee that set up Mobile Broadband Interface Model (MBIM) specification and they also
helped set up NCM specification, besides being principle author of the WMC family specifications

Q
Where is USB positioned in the embedded wireless com-
munications space? Q
What would be the advantage of selecting this technology
in consumer electronics design?
The modem is almost all there’s going to be as a separate This is possibly a superior connectivity technology to
module from the application processor. For most of the Internet something like Bluetooth or Wi-Fi Direct. It will work on any
of Things (IoT) applications, like the smart power meter and device, as long as the lower MAC has the right capability.
personal medical equipment, the volumes of individual products With this software module, you can either appear as a device,
will be lower, and they want to ship international and they don’t or as a USB host, or even both.
want to have to redesign and recertify it for every different mar-
ket. Thus, they’ll design a modem with a separate module where
there will be communication through different variants of USB. Q
What about the inter-chip solutions available with USB?
For LTE modems, the speeds are currently 150mbit/s. The
USB Implementers Forum (USB-IF) has invented the Super-

Q
How should engineers select a solution for their USB
implementation?
speed inter-chip USB, which is a chip-to-chip connection.
One of the things that they developed was a very-low-power
Typically they should start by selecting the required de- physical layer (PHY), called the M-PHY, which runs at speeds
vice controller or host controller driver from our library and from 1 gigabit/s to 5 gigabit/s. However, SSIC-USB is ahead
then use a framework to produce a full-on USB solution. Next, because, a lot of deployment of USB in mobile devices has
on top of this framework they can add device-class protocols already happened while there is no deployment of the others.
and class drivers to do the particular function that they want. But the speeds are naturally different since this is at an IC
level. While Super-speed can achieve 5 gigabit/s, SSIC-USB

Q
What is the most exciting aspect of USB Technology?
The exciting thing right now in consumer market is Media
is variable between 1 gigabit/s and 4 gigabit/s.

Agnostic USB (MA-USB), and in the embedded market it is


SSIC-USB. Q
How is HSIC-USB different from conventional USB?
HSIC-USB is a specialised version of high-speed USB, opti-
mised for low-power chip-to-chip applications. Conventional

Q
What are the major differences between MA-USB and the
old wireless USB?
USB 2.0 devices use low-level signalling that works for 5-me-
tre cables but is very power hungry; HSIC-USB uses low-level
First of all it’s based on Wi-Fi, the radio here is a Wi-Fi radio signalling that is extremely low-power, but only operates over
and is not something that’s specially developed for USB. It is 10cm distances on a PC. As a side effect, HSIC-USB is substan-
very fast and there is no or much less cell-to-cell interference. tially more difficult to measure than normal USB.
The second important thing is that, instead of trying to
model it on a packet-by-packet basis, they do it at the transfer
level. In USB 2.0 and USB 3.0, each piece gets individually ac- Q
Where will the most significant growth occur in emerging
technologies?
knowledged; with MA-USB the acknowledgements are done There are two very important trends: the rise of the tablet,
at the same level and not at the level of the host controller. and the deployment of IoT. With respect to connectivity for
This makes it much more efficient. tablet and mobile computing, the big area for growth right
Also instead of using their own pairing technique, they just now is in ‘wireless tethering’ technologies. In the area of IoT,
leverage existing technology like Wi-Fi’s P2P. Finally, they also it’s clear that embedded forms of USB will be very important
leverage much cleaner Wi-Fi Max power management. for connecting modem chips to baseband processors. 

130 August 2014 | Electronics For You www.efymag.com


product categories index

advertisers’ product category index


Products Page No. Products Page No. Products Page No. Products Page No.

Miscellaneous Components (Including Active & Passive) Educational Training Kits Safety & Security Products
Mr. Pathak......................................................... 132 APC Technologies ............................................ 138 Minmax Electronics (D) .................................... 145 Matrix Comsec Pvt Ltd ......................................... 9
Indus Industries................................................. 136 Arham Electronics & Electricals
Shidore Microsys Electronics Pvt Ltd................ 143 (Nimra Products) ........................................... 144 IT Products Sensors & Transducers
electronicsforu.com............................................. 34 Digi-Key Corporation ............................................ 5 ISOFT ............................................................... 141 Nilatech Private Ltd. ......................................... 143
Fujitsu Semiconductor Pacific Asia Limited PIC GmbH .......................................................... 33
Automation & Robotics Singapore ........................................................ 25 Materials (Including Chemicals & Rhydo Technologies P Ltd ................................ 131
Indus Robotics & Automation Research Good Will Instrument Co. Ltd ........................... 148 Consumables)
Pvt. Ltd. ......................................................... 132 International Rectifier Hong Kong Ltd ................. 81 HK Wentworth (India) Pvt Ltd.............................. 57 Solar Products
Jai Mata Electronics ......................................... 145 Persang Alloy Industries Pvt Ltd ....................... 135 Elektro Power Systems .................................... 142
Avionics & Defence Equipment Laxmi Electronics ............................................. 145 Progressive Engineers (R) ............................... 136 Hitech Solar Appliances .................................... 142
Electronic Enterprises India Pvt Ltd ...................115 MediaTek India Technology Pvt Ltd................... 139 YO YO Chemicals ............................................ 134 Nehatronix ........................................................ 143
Microchip Technology Inc. .................................. 59 Raj Electronics .................................................. 144
Batteries & Power Supplies Millenium semiconductors ...................................11 Optics & Optoelectronics
Anjali Power Systems ....................................... 145 Millennium Technologies .................................. 134 Binay Opto Electronics Pvt Ltd (D)...................... 18 Test & Measurement Equipment (Including
Brite Systems ................................................... 144 Mouser Electronics (Hong Kong) Ltd .................. 13 Buljin Elemec Pvt Ltd ........................................ 142 Indicators & Monitors)
Concept Electronics .......................................... 142 Murata Manufacturing Co. Ltd. ........................... 85 Digital Promoters (I) Pvt Ltd (M) ....................... 142 Agilent Technologies India Pvt Ltd....................... 53
Elnova Ltd (m) .................................................. 145 Perfect Radios .................................................. 143 International Corporate ..................................... 145 Agilent Technologies India Pvt Ltd .................... G/F
Gurukirpa Electronics ....................................... 144 Renesas Electronics Singapore Pte Ltd.............. 69 Sewon Precision & Ind. Co. Ltd......................... 136 Anritsu India Pvt Ltd ........................................... 31
Integrated Batteries India P Ltd (D) .................. 143 ROHM Semiconductor ........................................ 27 Crown Electronic Systems (D) .......................... 142
J.K. Power ........................................................ 144 Rubycon Singapore Pte Ltd (India Liaison PCBs, Assemblies & Sub Assemblies Dinteck .............................................................. 144
Kandhari Photo Electronics P Ltd ..................... 144 Office) ............................................................ 140 Circuit Systems (I) Ltd (D) .................................. 97 FLIR Systems ..................................................... 29
Mornsun Guangzhou Science & Technology S.M Semiconductors (D) .................................. 143 Mitsutek Electronics (D) .................................... 145 Max Technology & Co. ........................................ 35
Co. Ltd ............................................................. 91 Sancon India Pvt. Ltd. ...................................... 137 SMD Electronics Pvt Ltd ................................... 143 NI Systems (India) Pvt Ltd .................................... 7
Sakthi Accumulators Private Ltd ....................... 145 Shavison Electronics Pvt. Ltd. ............................ 15 Toradex Systems (India) Private Limited .......... 149 Rohde & Schwarz ............................................... 63
SM Electronic Technologies Pvt Ltd.................... 21 ST Microelectronics Marketing Pvt. Ltd .............. 49 Tektronix India Pvt Ltd. (D)................................ 150
Srishti Electronics ............................................. 144 Toshiba India Pvt Ltd........................................... 45 Plugs, Sockets & Connectors Towa Engineering Works .................................. 142
Stab-Brain Systems .......................................... 143 Virginia Panel Corporation .................................. 47 FCI OEN Connectors Ltd..................................... 77 Usart Technologies India Pvt Ltd....................... 134
Upsinverter.com ................................................ 133
EDA Tools (Including Designing & Drafting Aids) Reseller and Distributors Trade Shows and Events
Cabinets, Enclosures & Accessories Embedded Systems Solutions Pvt Ltd.............. 140 Element14 India Pvt Ltd........................................ 1 IPCA 2014 .......................................................... 14
S K Metal Works ............................................... 145 MathWorks ......................................................... 65 LWI Electronics Inc. ............................................ 23 MMI India Pvt. Ltd (F) ......................................... 43
Shrey Plastic Moulders ..................................... 143 Temco Electricals & Electronic Industries.......... 132 Madhu Subtronic Components Pvt Ltd................ 41

EFY Magazine Attractions During 2014


Month Technology Focus EFY Report Buyers’ Guide t&m

January Electronics of Things Industrial Automation Electronics Rework Stations Automated Test Equipment (AOI, etc)

Handheld T&M Equipment for Field


February Smart Grid Smart Grid Electronics Thermal Imaging
Engineers

March Smart & Electric Vehicles Automotive Electronics How to Make Your Lab Static Proof Function & Signal Generators

April Smart Homes Inverters & UPS–SOHO & Industrial Digital Multimeters Multimeters

May FPGA (Programmable Chips) Connectors & Terminals FPGA Training Kits Data Acquisition Systems

Desktop Manufacturing Equipment


June 3-D Printers Certification & Quality Labs EMC Test Equipment
(SMT, Reflow Ovens, 3D Printers)

PCB Industry in India: Suppliers &


July Raspberry Pi Budget Friendly Oscilloscopes Oscilloscopes
Manufacturers

August Security 2.0: Latest products Aerospace & Defence Electronics Wi-fi & RF Modules Incircuit Test Systems

September Smart Robos Solar Electronics EDA Tools for Circuit Design Virtual Instruments

Development Boards (Microcontroller


October Open Source Electronics Educational & training Products Analysers (Network, Protocol, Spectrum, etc)
based)

Wireless Communication Technologies


November Security & Surveillance Soldering / Desoldering Stations RF Devices (Wireless Devices)
(Zigbee, RF to 5G & beyond)

December Smart Lighting LED Lighting Programmable Power Source Power Analysers/Power Meters/Supplies

146 August 2014 | Electronics For You www.efymag.com


advertisers’ & organisation index

advertisers’ index
Client name Page No. Client name Page No. Client name Page No.
Agilent Technologies India Pvt. Ltd..........................................Gate Fold/53 HK Wentworth (India) Pvt Ltd...................................................................57 Persang Alloy Industries Pvt Ltd (www.persangalloy.com)....................135
Anjali Power Systems.............................................................................145 Indus Industries.......................................................................................136 PIC GmbH (www.pic-gmbh.com).............................................................33
Anritsu India Pvt Ltd..................................................................................17 Indus Robotics & Automation Research Pvt. Ltd...................................132 Progressive Engineers............................................................................136
APC Technologies...................................................................................138 Integrated Batteries India P Ltd .............................................................143 Raj Electronics........................................................................................144
Arham Electronics & Electricals (Nimra Products).................................144 International Corporate...........................................................................145 Renesas Electronics Singapore Pte.Ltd...................................................69
Binay Opto Electronics Pvt Ltd (www.binayLED.com).............................18 International Rectifier Hong Kong Ltd (www.irf.com)...............................81 Rhydo Technologies P Ltd (www.rhydo.com).........................................131
Brite Systems..........................................................................................144 IPCA 2014.................................................................................................14 Rohde & Schwarz (www.rohde-schwarz.co.in)........................................63
Buljin Elemec Pvt Ltd (www.flexiblepcb.com)........................................142 ISOFT......................................................................................................141 ROHM Semiconductor..............................................................................27
Circuit Systems (I) Ltd (www.mycsil.com)................................................97 J.K. Power ..............................................................................................144 Rubycon Singapore Pte Ltd ...................................................................140
Concept Electronics................................................................................142 Jai Mata Electronics................................................................................145 S K Metal Works (www.skmetals.com)...................................................145
Crown Electronic Systems......................................................................142 Kandhari Photo Electronics P Ltd...........................................................144 S.M Semiconductors...............................................................................143
Digi-Key Corporation (www.digikey.com)...................................................5 Kits n Spares...........................................................................................125 Sakthi Accumulators Private Ltd.............................................................145
Digital Promoters (I) Pvt Ltd....................................................................142 Laxmi Electronics....................................................................................145 Sancon India Pvt. Ltd..............................................................................137
Dinteck....................................................................................................144 LWI Electronics Inc. (www.livewireinfo.com)............................................23 Sewon Precision & Ind.Co.Ltd (www.swpi.co.kr)...................................136
E Rocks 14................................................................................................51 Madhu Subtronic Components Pvt. Ltd. Ltd............................................41 Shavison Electronics Pvt. Ltd. (www.shavison.com)...............................15
EFY Expo India.......................................................................................129 MathWorks................................................................................................65 Shidore Microsys Electronics Pvt Ltd.....................................................143
EFY Expo West.......................................................................................101 Matrix Comsec Pvt Ltd (www.cognitoindia.com)........................................9 Shrey Plastic Moulders (www.shreyplasticmoulders.com)....................143
EFY Tech Center.......................................................................................73 Max Technology & Co. (www.maxtechnoloindia.com).............................35 SM Electronic Technologies Pvt. Ltd........................................................21
eleb2b.com..............................................................................................138 MediaTek India Technology Pvt. Ltd,......................................................139 SMD Electronics Pvt.Ltd.........................................................................143
Electronic Enterprises India Pvt Ltd (www.eeipl.in)................................ 115 Microchip Technology Inc. (www.microchip.com).....................................59 Srishti Electronics (www.acedigital.co.in)...............................................144
Electronics Yellow Pages.....................................................................38-39 Millenium semiconductors (www.millenniumsemi.com)........................... 11 ST Microelectronics Marketing Pvt. Ltd....................................................49
electronicsforu.com...................................................................................34 Millennium Technologies (www.milltech.in)............................................134 Stab-Brain Systems................................................................................143
Elektro Power Systems...........................................................................142 Minmax Electronics (www.minmax.co.in)...............................................145 Subscription Form.....................................................................................89
Element14 India Pvt Ltd..............................................................................1 Mitsutek Electronics................................................................................145 Tektronix India Pvt Ltd. (www.tektronix.com/2170)................................150
Elnova Ltd (www.elnova.com)................................................................145 MMI India Pvt. Ltd ....................................................................................43 Temco Electricals & Electronic Industries, (www.temco.co.in)...............132
Embedded Systems Solutions Pvt Ltd. .................................................140 Mornsun Guangzhou Science & Technology Co.Ltd...............................91 Toradex Systems (India) Private Limited (www.toradex.com)...............149
FCI OEN Connectors Ltd. ........................................................................77 Mouser Electronics (Hong Kong) Ltd ......................................................13 Toshiba India Pvt. Ltd................................................................................45
FLIR Systems (www.flir.com)....................................................................29 Mr. Pathak...............................................................................................132 Towa Engineering Works (www.towaengg.com)....................................142
Fujitsu Semiconductor Pacific Asia Limited Singapore............................25 Murata Manufacturing Co. Ltd..................................................................85 Upsinverter.com (www.upsinverter.com)................................................133
Good Will Instrument Co. Ltd (www.goodwill.com.tw)...........................148 Nehatronix (www.natashaindia.com)......................................................143 Usart Technologies India Pvt Ltd............................................................134
Gujarat Manufacturing Show 2014.........................................................127 NI Systems (India) Pvt Ltd (www.ni.com)...................................................7 Virginia Panel Corporation........................................................................47
Gurukirpa Electronics (www.gurukirpaelectronics.com).........................144 Nilatech Private Ltd. (www.nilatech.co.in)..............................................143 YO YO Chemicals...................................................................................134
Hitech Solar Appliances..........................................................................142 Perfect Radios........................................................................................143 Page numbers subject to final dummy corrections

An EFY Group publication

EB Times
• Electronics • Trade Channel • Updates

is Becoming Regional
Get East, West, North & South
Editions at you doorstep. Write
to us at myeb@efy.in and get
EB Times regularly

This monthly B2B Newspaper is a resource for traders, distributors, dealers,


and those who head channel business, as it aims to give an impetus to
channel sales

www.efymag.com Electronics For You | August 2014 147

S-ar putea să vă placă și