Skip to content

Instantly share code, notes, and snippets.

@bogsen
Last active August 29, 2015 14:02
Show Gist options
  • Save bogsen/a351d0637a1336d284df to your computer and use it in GitHub Desktop.
Save bogsen/a351d0637a1336d284df to your computer and use it in GitHub Desktop.
#include <sys/ioctl.h>
#include <fcntl.h>
#include <unistd.h>
int main() {
int fd = open("/dev/fb0", O_WRONLY);
while (1) {
ioctl(fd, 1074032001);
sleep(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment