- Vehicle accident prevention and safety system, (features like alcohol and over speeding detectors can be added).
- Design and implementation of a programmed remote controller for appliances power supply and monitoring control system
- Short distance measurement instrument using ultrasonic or infrared Sensors
- Advanced weather forecasting system with data acquisition.
- Renewable energy parameter measurement, monitoring and control for effective power generation and distribution system.
- Climatronics.
- DTMF based controlled solar powered vehicle.
- Object avoidance robot for bomb and metal detection
- Automated voice tracking camera positioning system
- Short range wireless power transfer for low power electronics and mobile phone charging.
- General purpose wireless sensor nodes
- Design of strong room security monitoring and control.
- Proximity sensor triggered motion detection and video surveillance system for security applications.
- In-vehicle over speeding detector and limiter system with adjustable speed limit for various vehicles.
- Fault detection and control in three phase distribution network.
- Micro-controller based intrusion security monitoring system
- Conference hall maximum capacity monitoring and control with display and alert system
- Multipurpose GSM based gas alert and control system to detect LPG/CNG leakage in an environment.
- Pay as you go DSP solar inverter system with overload and tamper alert system.
- Coin battery chargers for portable mobile phone devices at public places
- Changeable password based instrument and electronic device protection control
- Remote condition monitoring of real-time light intensity and temperature data
- Shortest Path Finding and Obstacle Detection for Visually Impaired People.
- Automated room temperature measurement and control
- Automated sun tracking solar panel energy distribution system with MPPT controller.
- Intelligent Emergency traffic light control system.
- Queue management and control system
- Municipal route choice system.

Electronic System Designs, Research and Programming........ Able Designs and Construction Company, (ADACC). abledesigns@yahoo.com. engrable.ea@gmail.com +234-8037909203....... We leverage decades of applications, ideas and manufacturing experience, to develop and produce electronic products that provides solutions for today, tomorrow and beyond. We have several design engineers and technicians along with great talent, experience and passion for electronics design.
Sunday, 12 February 2017
CONTROL AND INSTRUMENTATION ENGINEERING PROJECT TOPICS
Monday, 6 February 2017
SOLAR CHARGE CONTROLLER
Study this cod below and redraw or create your own circuit.
*********************************
//
solar charge controller
#include
#include
#include
"lcd.h"
#include
"delay.h"
#include
"serial.h"
//
Prototypes
float
ReadAdc(unsigned char channel);
void
lcd_intro (void);
void
giris_olc(void);
//
Useful defines
#define
LSB(x) (unsigned char)(*(((unsigned char
*)&x)+0))
#define
MSB(x) (unsigned char)(*(((unsigned char
*)&x)+1))
#define
LWORD(x) (unsigned int)(*(((unsigned
int *)&x)+0))
#define
HWORD(x) (unsigned int)(*(((unsigned
int *)&x)+1))
#define
clrwdt() asm("clrwdt")
#define
PORTBIT(adr, bit) ((unsigned)(&adr)*8+(bit))
#defined
DelayUs(x) { unsigned char _dcnt; _dcnt
= x; while(--_dcnt != 0){asm("NOP");asm("NOP");} }
#define
DelayMS(x) { unsigned char _dcnt; _dcnt
= x; while(--_dcnt !=0) {DelayUs(250);DelayUs(250);DelayUs(250);DelayUs(250);}}
#define
SampNum 40
@
CO-bit static PORTBIT(DOOR, 0);
CI
@ static bit PORTBIT(DOOR, 1);
float
giris0, Input1, input2, Input3;
float
LRV, HVD, RCV, LVD;
unsigned
char buff[15];
main
(){
//
Interrupt settings
GIE
= 0; // Disable all
interrupts
//
ADC settings
ADCON1=0b10000010; // right justified, DOOR for A / D , PORTE
digital
; // Fosc/32, CH0, ADON
//
PORT settings
PORTA=255;
PORTB
= 0;
PORTC
= 0;
PORTD
= 0;
GATE
= 3;
TRISA=0b11111111;
TRISB
= 0b00000000;
TRISC=0b00000000;
Thirty
= 0b00000000;;
TRISE
= 0b00000000;
LRV
= 13;Load Reconnect Voltage(cargo lashing)
HVD
= 143/10;High Voltage Disconnect(PV separation)
RCV=135/10;PV
Reconnect(Connecting PV)
LVD=115/10;Low
Voltage Disconnect(load allocation)
;The
above values are
based on the battery type setting points deyişen.
lcd_init();
lcd_intro();
lcd_dispmode(4+0+0);
// 4:Display on 2:cursor off 1:blink off
DelayUs(220);
while(1)
{
giris0
=(ReadAdc(0)*20/1024);
ftoa(giris0,buff);
lcd_clear();
lcd_goto(0); //1.line
(4+0+0);
// 4:Display 2:cursor 1:blink
lcd_puts("E
=");
lcd_goto(0x02);
lcd_puts(buff);
lcd_goto(0x06);
lcd_puts("In");
if
(giris0<=RCV) {CO=1;}
if
(giris0>HVD =) {CO=0;}
if
(giris0<=LVD) {CI=0;}
if
(giris0>LRV =) {CI = 1;}
Input1
=(ReadAdc(1)*75/10240);
ftoa(giris1,buff);
lcd_goto(0x08);
lcd_puts("I=");
lcd_goto(0x0A);
lcd_puts(buff);
if
(Input1> = 30) {CI = 0;}
lcd_goto(0x0E);
lcd_puts("A");
lcd_goto(0x40);
lcd_puts("P=");
lcd_goto(0x42);
input1
input2 = * giris0;
ftoa(giris2,buff);
lcd_puts(buff);
lcd_goto(0x47);
lcd_puts("The");
lcd_goto(0x49);
lcd_puts("SOC=%");
lcd_goto(0x4E);
Input3
= 100 *(giris0-LVD)/(HVD-LVD);
ftoa(giris3,buff);
lcd_puts(buff);
DelayMs(250);
DelayMs(250);
DelayMs(250);
DelayMs(250);
lcd_clear();
}
}
float
ReadAdc(unsigned char channel){
unsigned int adcvalue;
ADCON0 = (channel << 3) + 0x81; // select channel
DelayUs(20); // wait for acquasition time
ADGO = 1;
while(ADGO); // wait for conversion complete
MSB(adcvalue)=ADRESH;
LSB(adcvalue)=ADRESL;
return(adcvalue);
//******************************************
}
void
lcd_intro (void)
{
lcd_clear();
lcd_goto(0);
lcd_dispmode(4+0+0); // 4:Display 2:cursor
1:blink
lcd_putsd(" SOLAR");
lcd_goto(0x40);
lcd_putsd(" SARJ REGULATORU");
DelayMs(250);
DelayMs(250);
DelayMs(250);
DelayMs(250);
lcd_clear();
}
*********************************
Subscribe to:
Posts (Atom)