Posts

Showing posts from August, 2017

PCB Designing Guidelines

Image
Hi Friends, Today we discuss important PCB DESIGN GUIDELINES.There are many things need to be taken care while PCB design.Some of them are as- 1.While starting component placement on the PCB,first Place main components like micro controller,Processor,Memory and Clock devices and then place the support components like resistors,capacitors around them.Means place the active component first and then place passive components. 2.Isolate the Analog,digital and power supply section.The analog supply should be noise and ripple free.If we use same supply for analog and digital then it would cause de-functioning of the circuit.If you are not able to use different power supply source then at least use proper filtering technique. 3. Arrange components in rows and columns and oriented uniformly for ease of installation,inspection and rework. 4. Don't place routes under transformers and EMI chokes.Keep at least 200ml clearance from the transformer to other components. 5....

LabVIEW- To Check Number is Palindrome or Not

Image
Hi Friends, Today we will make a program to check that the number is palindrome or not.Palindrome number means which can be reads the same backwards and forwards. example-515,23432,98789 etc. I hope that you know the basics of LabVIEW so that it will be little easy to start.If not, then don't worry, read another articles to learn basics from this blog. How to check Input Number is Palindrome or not ? Step-1. Open the Front Panel of the new program. Step-2. Right click on the empty Front panel to open the control palette.Click on the modern and then numeric.Now we want to provide input number in the program so chose the numeric control. If we want to display the numeric number then we need to chose the Number Indicator. Right now we don't required to display the number. To Show that the input number is Palindrome or not, we will add one LED also in the program.This is done by From the Control Palette-->Modem-->Boolean-->Round LED. Step-3. Now Cl...