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: mbed C12832 Servo RangeFinder Pulse
MoistureSensor.h
00001 #ifndef MoistureSensor_H 00002 #define MoistureSensor_H 00003 00004 #include "mbed.h" 00005 00006 //Sensor new class for sensorA 00007 class moisture_sensor 00008 00009 { 00010 public: 00011 00012 moisture_sensor(PinName pin); 00013 ~moisture_sensor(); 00014 float read(); 00015 private: 00016 //class sets up the AnalogIn pin 00017 AnalogIn _pin; 00018 }; 00019 #endif
Generated on Wed Jul 27 2022 00:26:44 by
