Hi, How do we configure a beep sound for a button press in photon application. Please suggest me on above issue. Regards, Harish.
Hi, try this fp = fopen( "/dev/con1", "w" ); if( fp != NULL ) { putc('\a', fp); putc('\n', fp); fclose( fp ); }