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.
char sHex[80];
char sOutput[80];
// additional code to read or memcpy() the binary into sHex...
sprintf(sOutput, "%02X%02X%02X%02X",
sHex[0],
sHex[1],
sHex[2],
sHex[3]);