Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FastAnalogIn FastIO FastPWM SimpleDMA USBDevice mbed
Fork of Pinscape_Controller by
nullSensor.h
00001 // Null plunger sensor 00002 // 00003 // This file defines a class that provides the plunger sensor interface 00004 // that the main program expects, but with no physical sensor underneath. 00005 00006 const int npix = JOYMAX; 00007 00008 class PlungerSensor 00009 { 00010 public: 00011 PlungerSensor() { } 00012 00013 void init() { } 00014 int lowResScan() { return 0; } 00015 bool highResScan(int &pos) { return false; } 00016 void sendExposureReport(USBJoystick &) { } 00017 }; 00018
Generated on Sun Jul 24 2022 05:27:38 by
