hamidooon
Junior Member level 1
i want to build on off programable switch using pjc when i search on net then this project is find.
link of project=
https://embedded-lab.com/blog/programmable-digital-timer-switch-using-a-pic-microcontroller/
but the problem is this code is only for one cycle of relay on and off operation ...
i need relay on off on off after given time unlimited untill reset ...
.help to modify this code.....
code is written in MICROC
Here is ckt diagram
link of project=
https://embedded-lab.com/blog/programmable-digital-timer-switch-using-a-pic-microcontroller/
but the problem is this code is only for one cycle of relay on and off operation ...
i need relay on off on off after given time unlimited untill reset ...
.help to modify this code.....
code is written in MICROC
Here is ckt diagram
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 /* * Project name: Programmable Digital Timer * Copyright: (c) Rajendra Bhatt, 2010. MCU: PIC16F628A Oscillator: XT, 4.0 MHz */ // LCD module connections sbit LCD_RS at RA0_bit; sbit LCD_EN at RA1_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 TRISA0_bit; sbit LCD_EN_Direction at TRISA1_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 sbit MODE at RA2_bit; sbit SELECT at RA3_bit; sbit ENTER at RA4_bit; sbit START at RB0_bit; sbit RelaySW at RB3_bit; // Define Messages char MSG1[] = "Device is "; char MSG2[] = "OFF"; char MSG3[] = "ON "; char MSG4[] = "HH:MM"; unsigned short HHMM_Pos[] = {6, 7, 8, 9, 10}; unsigned short ON_Time[] = {0, 0, 10, 0, 0}; // 10 + 48 is : unsigned short OFF_Time[] = {0, 0, 10, 0, 0}; unsigned short Mode_Select = 0 ; // 0:ON, 1:OFF unsigned short i, j, k, Timer_On, Get_Input, Cur_Pos, Cur_On; unsigned short temp, refresh, Num, HalfSec, Blink, ChangeMin=0; unsigned short OFF_HH, OFF_MM, ON_HH, ON_MM; void Disp_First_Row(){ Lcd_Out(1,1, MSG1); if (RelaySW == 0) Lcd_Out(1,11, MSG2); if (RelaySW == 1) Lcd_Out(1,11, MSG3); } void Disp_Char(unsigned short col, unsigned short chr){ Lcd_Chr(2, col, chr+48); } void Disp_Time(){ for(i=0; i<5; i++){ if(!Mode_Select){ Lcd_Out(2,1, MSG2); Disp_Char(HHMM_Pos[i],OFF_Time[i]); } if(Mode_Select){ Lcd_Out(2,1, MSG3); Disp_Char(HHMM_Pos[i],ON_Time[i]); } } } void play_sound(){ Sound_Play(2500, 500); } void debounce(){ Delay_ms(250); } void cursor_left(){ for(j=0; j<5; j++){ Lcd_Cmd(_LCD_MOVE_CURSOR_LEFT); } } void disable_timer(){ INTCON = 0x00; RelaySW = 0; INTCON.T0IF = 0; Timer_On = 0; Blink = 0xff; Mode_Select = 0; Disp_First_Row(); Disp_Time(); play_sound(); } void interrupt() { Num ++; // Interrupt causes Num to be incremented by 1 if(Num == 9) { HalfSec ++; // Increase sec Num = 0; Blink = ~Blink; if (HalfSec == 120){ HalfSec = 0; ChangeMin = 1; } } TMR0 = 39; // TMR0 returns to its initial value INTCON.T0IF = 0; // Bit T0IF is cleared so that the interrupt could reoccur } void main() { CMCON = 7; // Disable Comparators TRISA = 0b00111100; TRISB = 0b00000001; Sound_Init(&PORTB,2); // Initialize Buzzer o/p pin RelaySW = 0; Timer_On = 0; Get_Input = 0; Cur_Pos = 0; Cur_On = 0; refresh = 0; Num = 0; HalfSec = 0; Lcd_Init(); // Initialize LCD Lcd_Cmd(_LCD_CLEAR); // Clear display Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off Lcd_Out(1,1, "Copyright @"); Lcd_Out(2,1, "Embedded-Lab.com"); i=0; while(i<4){ debounce(); i ++; } Lcd_Cmd(_LCD_CLEAR); Disp_First_Row(); Lcd_Out(2,4,"-"); Lcd_Out(2,12, MSG4); Disp_Time(); do { if(!MODE && !Timer_On){ debounce(); if(!Get_Input){ Mode_Select = ~Mode_Select; Disp_Time(); } if(Get_Input){ if(!Mode_Select){ OFF_time[Cur_Pos] = OFF_time[Cur_Pos]+1; temp = OFF_time[Cur_Pos]; switch (Cur_Pos){ case 0: if(temp > 9) OFF_time[Cur_Pos]=0; break; case 1: if(temp > 9) OFF_time[Cur_Pos]=0; break; case 3: if(temp > 5) OFF_time[Cur_Pos]=0; break; case 4: if(temp > 9) OFF_time[Cur_Pos]=0; break; } Disp_Char(6+Cur_Pos, OFF_time[Cur_Pos]); } if(Mode_Select){ ON_time[Cur_Pos] ++; temp = ON_time[Cur_Pos]; switch(Cur_Pos){ case 0: if(temp > 9) ON_time[Cur_Pos]=0; break; case 1: if(temp > 9) ON_time[Cur_Pos]=0; break; case 3: if(temp > 5) ON_time[Cur_Pos]=0; break; case 4: if(temp > 9) ON_time[Cur_Pos]=0; break; } Disp_Char(6+Cur_Pos, ON_time[Cur_Pos]); } Lcd_Cmd(_LCD_MOVE_CURSOR_LEFT); } } // END if(!MODE) if(!SELECT && !Timer_On){ debounce(); Get_Input = 1; if(Cur_On) { Cur_Pos ++; if (Cur_Pos == 2) { Lcd_Cmd(_LCD_MOVE_CURSOR_RIGHT); Cur_Pos ++; } if(Cur_Pos > 4) { Lcd_Cmd(_LCD_MOVE_CURSOR_RIGHT); Cur_Pos = 0; cursor_left(); } else Lcd_Cmd(_LCD_MOVE_CURSOR_RIGHT); } if(!Cur_On) { Cur_On = 1; cursor_left(); Lcd_Cmd(_LCD_UNDERLINE_ON); } } if(!ENTER && Get_Input){ debounce(); Get_Input = 0; Cur_On = 0; Cur_Pos = 0; Disp_Time(); Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off } if (!START && !Get_Input){ debounce(); switch(Timer_On){ case 0: play_sound(); Timer_On = 1; OPTION_REG = 0x07; // Prescaler (1:256) is assigned to the timer TMR0 TMR0 = 39; // Timer T0 counts from 39 to 255 INTCON = 0xA0; // Enable interrupt TMR0 and Global Interrupts INTCON.T0IF = 0; Mode_Select = 0; Blink = 0; Disp_Time(); break; case 1: disable_timer(); break; } } if(Timer_On){ OFF_HH = OFF_Time[0]*10 + OFF_Time[1]; OFF_MM = OFF_Time[3]*10 + OFF_Time[4]; ON_HH = ON_Time[0]*10 + ON_Time[1]; ON_MM = ON_Time[3]*10 + ON_Time[4]; switch(Blink){ case 0: Lcd_Chr(2,8,' '); break; case 255: Lcd_Chr(2,8,':'); break; } if(!OFF_HH && !OFF_MM &&!RelaySW){ if(ON_HH || ON_MM){ RelaySW = 1; Mode_Select = 0xff; Disp_First_Row(); Disp_Time(); play_sound(); } else { disable_timer(); } } if(!ON_HH && !ON_MM && RelaySW){ disable_timer(); play_sound(); } if(ChangeMin) { switch(Mode_Select){ case 0: if(OFF_MM == 0 && OFF_HH>0){ OFF_MM = 59; OFF_HH -- ; } else if (OFF_MM >>0) OFF_MM --; OFF_Time[0] = OFF_HH/10; OFF_Time[1] = OFF_HH%10; OFF_Time[3] = OFF_MM/10; OFF_Time[4] = OFF_MM%10; break; case 255: if(ON_MM == 0 && ON_HH>0){ ON_MM = 59; ON_HH -- ; } else if(ON_MM >> 0) ON_MM --; ON_Time[0] = ON_HH/10; ON_Time[1] = ON_HH%10; ON_Time[3] = ON_MM/10; ON_Time[4] = ON_MM%10; break; } ChangeMin = 0; Disp_Time(); } } }while(1); }