Int value not incrementing during button click

135 Views Asked by At

I try to increment a integer value from 0 to 2 and again roll back to zero again every time when button is clicked. when i click the button the value is incremented up to 1 and stops there itself. i am using dsPIC33 microcontroller with a switch and LCD display for viewing the values. And iam using mplab x ide for coding. Iam using Elcom MPS-1 switch (4A, 250V).And Here is my code.

#define GreenButton PORTBbits.RB3 // Assigned as input pin

void longdelay()
{
    long unsigned int i;
    for(i=0;i<300000;i++);
}

void display()
{
   sprintf(buff1,"mode");
   sprintf(buff2,"  ");
   sprintf(buff3,"%d",v); 
   call_display();
   lcddelay(); 
}

int main()
{
        int v = 0;
        int cnt = 2;
        display();
        
        while((cnt)&&(GreenButton == 0))
        {   
            v++;
            display();
            cnt--;
           longdelay();
           longdelay();
           longdelay();
        }
        
        longdelay();
        longdelay();
        longdelay();
}
0

There are 0 best solutions below