If anyone could help me out with this assignment and explain the different piece
ID: 1730416 • Letter: I
Question
If anyone could help me out with this assignment and explain the different pieces of it that would be great! The code for the pic controller needs to be in assembly as well...
UMass Lowell 16.480/552 Microprocessor Design II and Embedded Systems Lab 1: Sensor Design and Analog Digital Conversion Due Date: Friday 07/27/2018. Objectives Learn how to design sensors with embedded microcontrollers Understand the operation of ADC Understand the design of sensor circuitry Description It is often necessary that we understand the surrounding environment using sensors. To design sensors and their associated circuitry, and to obtain and processor sensory data are important tasks in the design of an embedded system In this lab, you will need to design a light intensity sensor controlled by a PIC microcontroller. The parts given include a PIC16F18857, a photoresistor, a LED and assorted diodes and resistors. You can use a breadboard (or a wire-wrapping prototype board) to implement your circuit. The ADC module in PIC microcontroller will be used to convert an analog signal to corresponding digital value. Your PIC based light sensor device must: 1. Convert the light intensity information to a variable voltage (0-3V) 2. Obtain an analog input signal (sensory data) via an analog pin of the PIC (e.g. ANO) Use the internal ADC of PIC to convert analog signals to digital values Turn on a LED if the sensor is encapsulated in a dark box or put in a dark environment. Turn off the LED if the sensor is placed in a well-lighted environment. 3. 4. 5.Explanation / Answer
Code for auto intensity control of street lights:
Code for this project is written in Mikro C for pic. Complete C code for auto intensity control of street lights is given below :
[sociallocker]// LCD module connections
sbit LCD_RS at RB2_bit;
sbit LCD_EN at RB3_bit;
sbit LCD_D4 at RB4_bit;
sbit LCD_D5 at RB5_bit;
sbit LCD_D6 at RB6_bit;
sbit LCD_D7 at RB7_bit;
sbit LCD_RS_Direction at TRISB2_bit;
sbit LCD_EN_Direction at TRISB3_bit;
sbit LCD_D4_Direction at TRISB4_bit;
sbit LCD_D5_Direction at TRISB5_bit;
sbit LCD_D6_Direction at TRISB6_bit;
sbit LCD_D7_Direction at TRISB7_bit;
// End LCD module connections
unsigned short read_ds1307(unsigned short address)
{
unsigned short r_data;
I2C1_Start();
I2C1_Wr(0xD0); //address 0x68 followed by direction bit (0 for write, 1 for read) 0x68 followed by 0 –> 0xD0
I2C1_Wr(address);
I2C1_Repeated_Start();
I2C1_Wr(0xD1); //0x68 followed by 1 –> 0xD1
r_data=I2C1_Rd(0);
I2C1_Stop();
return(r_data);
}
void write_ds1307(unsigned short address,unsigned short w_data)
{
I2C1_Start(); // issue I2C start signal
//address 0x68 followed by direction bit (0 for write, 1 for read) 0x68 followed by 0 –> 0xD0
I2C1_Wr(0xD0); // send byte via I2C (device address + W)
I2C1_Wr(address); // send byte (address of DS1307 location)
I2C1_Wr(w_data); // send data (data to be written)
I2C1_Stop(); // issue I2C stop signal
}
unsigned char BCD2UpperCh(unsigned char bcd)
{
return ((bcd >> 4) + ‘0’);
}
unsigned char BCD2LowerCh(unsigned char bcd)
{
return ((bcd & 0x0F) + ‘0’);
}
int Binary2BCD(int a)
{
int t1, t2;
t1 = a%10;
t1 = t1 & 0x0F;
a = a/10;
t2 = a%10;
t2 = 0x0F & t2;
t2 = t2 << 4;
t2 = 0xF0 & t2;
t1 = t1 | t2;
return t1;
}
int BCD2Binary(int a)
{
int r,t;
t = a & 0x0F;
r = t;
a = 0xF0 & a;
t = a >> 4;
t = 0x0F & t;
r = t*10 + r;
return r;
}
int second;
int minute;
int hour;
int hr;
int ap;
int light;
int pwm;
int ir;
int adc_value = 0;
unsigned short set_count = 0;
short set;
char time[] = “00:00:00 PM”;
void main()
{
I2C1_Init(100000); //DS1307 I2C is running at 100KHz
TRISD = 0x07;
PORTD = 0x00;
TRISE.F0 = 1;
TRISC.F2 = 0; // designate PORTC pins as output
PORTC.F2 = 0; // set PORTC to 0
Adc_Init();
Lcd_Init();
PWM1_Init(5000);
PWM1_Start(); // start PWM1 // Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
Lcd_out(1,1,”Time:”);
do
{
set = 0;
if(PORTD.F0 == 0)
{
Delay_ms(100);
if(PORTD.F0 == 0)
{
set_count++;
if(set_count >= 4)
{
set_count = 0;
}
}
}
if(set_count)
{
if(PORTD.F1 == 0)
{
Delay_ms(100);
if(PORTD.F1 == 0)
set = 1;
}
if(PORTD.F2 == 0)
{
Delay_ms(100);
if(PORTA.F2 == 0)
set = -1;
}
if(set_count && set)
{
switch(set_count)
{
case 1:
hour = BCD2Binary(hour);
hour = hour + set;
hour = Binary2BCD(hour);
if((hour & 0x1F) >= 0x13)
{
hour = hour & 0b11100001;
hour = hour ^ 0x20;
}
else if((hour & 0x1F) <= 0x00)
{
hour = hour | 0b00010010;
hour = hour ^ 0x20;
}
write_ds1307(2, hour); //write hour
break;
case 2:
minute = BCD2Binary(minute);
minute = minute + set;
if(minute >= 60)
minute = 0;
if(minute < 0)
minute = 59;
minute = Binary2BCD(minute);
write_ds1307(1, minute); //write min
break;
case 3:
if(abs(set))
write_ds1307(0,0×00); //Reset second to 0 sec. and start Oscillator
break;
}
}
}
second = read_ds1307(0);
minute = read_ds1307(1);
hour = read_ds1307(2);
hr = hour & 0b00011111;
ap = hour & 0b00100000;
time[0] = BCD2UpperCh(hr);
time[1] = BCD2LowerCh(hr);
time[3] = BCD2UpperCh(minute);
time[4] = BCD2LowerCh(minute);
time[6] = BCD2UpperCh(second);
time[7] = BCD2LowerCh(second);
if(ap)
{
time[9] = ‘P’;
time[10] = ‘M’;
}
else
{
time[9] = ‘A’;
time[10] = ‘M’; [/sociallocker]
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.