Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
unsigned char a;
sbit b=P1^0;
#define a_BIT0 ( a & 0x01 ) ; declaration
#define SET_a_BIT0 ( a |= 0x01 ) ; declaration
#define CLR_a_BIT0 ( a &= 0x01 ) ; declaration
if ( a_BIT0 ) { do_somethig } ; evaluation