Skip to content

Instantly share code, notes, and snippets.

View lpbas's full-sized avatar

Lucas Paul lpbas

  • Greece
View GitHub Profile
@lpbas
lpbas / GPIO.java
Last active September 27, 2019 08:39 — forked from rosterloh/gpio.java
Android class for GPIO control
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/**
This class allows you to control GPIO pins form android, by abstracting the command line excecution into a java class.
IMPORTANT NOTE: Requires root to run, since it is required to write to GPIO ports in /sys/class/gpio/
*/
public class GPIO {