AnalogKey()
From Microduino Wiki
AnalogKey(PIN)
Description AnalogKey is used to create an instance of the object AnalogKey, which is used to detect analog sensors and Parameters
Sample
#include <Microduino_Key.h>
AnalogKey keyDigital(A0); //Create an analog switch instance, named keyDigital and connect it to pin A0
void setup() {
}
void loop() {
}
Others |