Projects

Bluetooth Hydration Wearable

Bluetooth Hydration Wearable

Introduction We developed a wearable hydration monitoring system that will track an individual’s hydration levels by measuring the bioimpedance of the skin, that will transmit the data via Bluetooth to his or her cellphone, and that will provide a visual cue corresponding to their hydration. Our completed project! High Level Design Rationale Dehydration is usually […]

PIC12F675 based digital clock

PIC12F675 based digital clock using LCD display (Code + Proteus simulation)

This post provides a simple digital clock implementation using PIC12F675 microcontroller and an LCD display. This code is written in C language using MPLAB with HI-TECH C compiler. You can download this code from the ‘Downloads‘ section at the bottom of this page. In this article, it is assumed that you know, How to interface LCD with […]

PIC12F675 based simple calculator

PIC12F675 based simple calculator ( Code + Proteus simulation )

This post provides a simple calculator project implementation for PIC12F675 microcontroller. This is a simple one digit[1] calculator which implements only 4 functions addition(+), subtraction(-), multiplication(x) and division(/). The code for PIC12F675 is written in C language using MPLAB with HI-TECH C compiler. You can download this code from the ‘Downloads‘ section at the bottom of this page. […]

PIC12F675 GPIO pin as input

How to use PIC12F675 GPIO pin as input (Code + Proteus simulation)

This post provides an example code to use PIC12F675 GPIO pins as inputs. After going through this example, you will understand how to make PIC12F675 pins as inputs and how to read their value in the code. This code is written in C language using MPLAB with HI-TECH C compiler.You can download this code from […]

Block Diagram of Overall Connections

IOT Home Automation

For our ECE4760 final project we built a wireless star network with the PIC32  for remote monitoring and automation. Meant to augment users’ abilities to gain insight into their homes through a monitoring station, our system is designed around reliable communication between individual low-cost nodes communicating at 2.4GHz which can be easily added or removed. […]

PIC16F84A LED blinking

PIC16F84A LED blinking code and Proteus simulation

This post provides the code to make an LED blink using PIC16F84A microcontroller. This code is written in C language using MPLAB with HI-TECH C compiler. This code is intended to be the first step in learning how to use PIC16F84A microcontroller in your projects. You can download this code from the ‘Downloads‘ section at […]

PIC16F84A PWM

PIC16F84A PWM code and Proteus simulation

This post provides the PWM code for PIC16F84A microcontroller using timer0. There are many uses for PWM signal, e-g you can control dc motor speed using PWM. Timer0 is initialized in the start of the main function and using timer0 interrupts, PWM is generated. This code is written in C language using MPLAB with HI-TECH C compiler. You can download […]

PIC16F84A LCD interfacing 8bit mode

PIC16F84A LCD interfacing code (In 8bit mode) + Proteus simulation

This post provides the LCD[1] interfacing code using PIC16F84A microcontroller. This code is written in C language using MPLAB with HI-TECH C compiler. You can download this code from the ‘Downloads‘ section at the bottom of this page. It is assumed that you know how to make an LED blink with PIC16F84A microcontroller. If you don’t then please read this […]

PIC16F84A based digital clock using LCD display

PIC16F84A based digital clock using LCD display (Code+Proteus simulation)

This post provides a simple digital clock implementation using PIC16F84A microcontroller and an LCD display. This code is written in C language using MPLAB with HI-TECH C compiler. You can download this code from the ‘Downloads‘ section at the bottom of this page. In this article, it is assumed that you know, How to interface LCD with […]

Receive Side Circuitry

RF Motion Controlled Robot

Introduction For our final project, we designed and implemented a remote-control car with a user-controlled steering wheel interface. We wanted a user interface that was immediately intuitive and familiar, which we thought a steering wheel with an onboard accelerometer definitely accomplished. Additionally, we wanted a system that could realize reliable real-time remote communication, so we […]