Skip to content

Instantly share code, notes, and snippets.

@hsgw
Created July 12, 2015 12:11
Show Gist options
  • Save hsgw/779a2d369f59c28536db to your computer and use it in GitHub Desktop.
Save hsgw/779a2d369f59c28536db to your computer and use it in GitHub Desktop.
read touch panel
float readTouchPanel(PinName a, PinName b....){
DigitalOut dout(a);
AnalogIn ain(b);
dout = 1;
return ain.read();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment