Created
July 12, 2015 12:11
-
-
Save hsgw/779a2d369f59c28536db to your computer and use it in GitHub Desktop.
read touch panel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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