Posts by Ibrar Ayyub:
The IDE Project
Posted on: 01 Oct 2022
4 prototype boards arrived today. After going over them carefully, I found 4 lines that crossed each other. After some quick surgery with a knife and some solder and wire, the IDE project is now semi portable. The power supply is still out of a PC, so it’s tied to an AC outlet. I’d like […]
PIC Light Chaser
Posted on: 01 Oct 2022
This month I am continuing with the PIC projects that I started in August. To be able to build this circuit you must build the August circuit which allows you the ability to program PIC’s. The circuit this month is a simple 8 light chaser built around a PIC. This will demonstrate how easy it […]
Interfacing DS1307 RTC Chip with AVR Microcontroller
Posted on: 30 Sep 2022
Real Time Clocks, as the name suggests are clock modules. They are available as integrated circuits (ICs) and manages timing like a clock. Some RTC ICs also manages date like a calendar. The main advantage is that they have a system of battery backup which keeps the clock/ca lender running even in case of power […]
CNC Controller Motion Schematics (Rev. D) using pic microcontrollers
Posted on: 30 Sep 2022
Table of Contents Introduction Power Supply I/O Microcontroller RS422 and Limit Switches X, Y, Z, and Z Axes Selenoid and Motor Control Printed Circuit Board Issues Introduction The parts list is kept in a separate file. Power Supply The power supply schematic is shown below: The power supply is pretty mundane. The 110VAC comes in […]
Remote-Control Light Dimmer using pic microcontroller
Posted on: 29 Sep 2022
The lamp in my bedroom is a very cheap lamp from Wal-Mart. It stands in one corner of my room, opposite of the door. This is where the problem is: If it is dark, I have to walk across the room, not trip on anything, find the small knob to twist to turn on the […]
USB data logger project using pic-microcontroller
Posted on: 29 Sep 2022
Introduction: In this project, PIC 18F4550 is programmed to perform the function of an oscilloscope. Communication is set up between the computer and the PIC through USB, so that bulk data transfer mode is implemented. Analogue circuits are carefully designed so the user can select gain and offset on the computer screen and have the […]
XBee radio communication between PICs using pic-microcontroller
Posted on: 28 Sep 2022
Overview Typically, two pics communicate by RS-232, a wired transmission. However, it may be desirable to communicate via a wireless link. This wiki page demonstrates using XBee radio modems which conform to the IEEE 802.15.4 protocol. These radios will allow for wireless communication between two PICs and between a PIC and a computer. File:XBeePinOut.jpg The […]
HC-05 Bluetooth link with zero code
Posted on: 28 Sep 2022
HC-05 Bluetooth link with zero code So you want to two HC-05 modules to automatically connect together, as soon as they’re powered up and with zero code? Well this is your lucky day since this can be done using the AT+BIND command. c Let’s do this thing! For this, you will need: 1 Arduino (I’m […]
LED VU Meter with LM3916
Posted on: 27 Sep 2022
Description LM3916 is a dedicated IC for VU LED meter. Unlike LM3915 which have 3dB step between voltage levels, the LM3916 have nonlinear steps: -20, -10, -7, -5, -3, -1, 0, +1, +2, +3db, just like old school analog VU meters. I saw in YouTube an interesting commercial LED VU meter, which imitates the needle […]
Programmable Lamp Dimmer using pic microcontoller
Posted on: 27 Sep 2022
Also known as the “Sketch as Fuck Lamp Dimmer” per my friend Eric, the design originating from this application note in general has the usual lamp dimmer topology: a zero detector, a timer, and a triac. These three components implement phase cutting, specifically the triac performs phase cutting on AC current from mains supplied to a load. The first […]