Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.
Class | ofWiring |
||
---|---|---|---|
Name | getAnalog() |
||
Examples | void testApp::update(){ if ( wiring.isWiringReady()){ if (bSetupWiring == false){ setupWiring(); bSetupWiring = true; // only do this once } // 2nd do the update of the wiring updateWiring(); } } //-------------------------------------------------------------- void testApp::setupWiring(){ wiring.sendAnalogPinReporting(0, ANALOG); } //-------------------------------------------------------------- void testApp::updateWiring(){ // update the wiring wiring.update(); cout<<wiring.getAnalog(0)<<endl; } |
||
Description | Returns the last received analog value (0-1023) for the given pin. | ||
Syntax | getAnalog(pin) |
||
Parameters |
|
||
Returns | int | ||
Usage | Application |