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.
INPUTS.h
00001 #ifndef INPUTS_H 00002 #define INPUTS_H 00003 00004 #include "mbed.h" 00005 00006 class INPUTS{ 00007 public: 00008 00009 INPUTS(PinName pot_hum_pin, PinName pot_temp_pin); 00010 float get_hum_req(); 00011 float get_temp_req(); 00012 00013 private: 00014 AnalogIn pot_vlaga; 00015 AnalogIn pot_temp; 00016 float req_hum, req_temp; 00017 00018 }; 00019 #endif
Generated on Mon Jul 18 2022 02:23:39 by
1.7.2