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.
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 void main() { CMCON = 0x07; TRISA = 0x00; TRISB = 0x00; PORTA = 0x00; PORTB = 0x00; PWM1_Init(9000); PWM1_Set_Duty(127); PWM1_Start(); while(1) { } }