How to Blink an Led Using PIC Microcontroller

In this tutorial we will learn How to Blink an LED with PIC Microcontroller using MPAB XC16 Compiler. Recently Microchip released a series of development tools including MPLAB X IDE and MPAB XC Compilers. MPLAB X IDE is a software that runs on a computer intended to develop applications for Microchip’s Microcontrollers and Digital Signal Controllers. It can be used…

Read More

Introduction to MATLAB

Introduction to MATLAB MATLAB is basically a high level language which has many specialized toolboxes for making things easier for us What are we interested in? Matlab is too broad for our purposes in this course. The features we are going to require is Matlab Screen

Read More

Led Blinking and Fading

Led Blinking: We will see blinking an normal dc led with arduino. Requiremnts: Arduino UNO Board – 1 No. LED – 1 No. Potentiometer – 1 No. Breadboard – 1 No. Below program is to blink an led with delay of 500msec of time: #define LED 10 void setup() {     pinMode(LED,OUTPUT); } void…

Read More

How to Interface Button with 8051

Introduction Hi guys in this article we will see how to interface switch with 8051 microcontroller. Whenever the switch is pressed LED glows. Let’s see how to do it. Components Required 8051 Microcontroller – 1 8051 Program Dumper- 1 LED – 1 Push Button – 1 Breadboard – 1 Jumper wires Switch Input/output devices are…

Read More

MATLAB BASICS

Variables No need for types. i.e., All variables are created with double precision unless specified and they are matrices. After these statements, the variables are 1×1 matrices with double precision Array, Matrix a vector x = [1 2 5 1] a matrix x = [1 2 3; 5 1 4; 3 2 -1] transpose y…

Read More

Deadband Control Using TMS320

Overview A deadband or deadband (also known as a dead zone or a neutral zone) is a band of input values in the domain of a transfer function in a control system or signal processing system where the output is zero (the output is ‘dead’ – no action occurs). Deadband regions can be used in control systems such as servo amplifiers to prevent oscillation or repeated activation-deactivation cycles (called ‘hunting’ in proportional control systems)….

Read More