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: UniGraphic mbed vt100
sensors/PSE530.h
- Committer:
- Rhyme
- Date:
- 2018-06-18
- Revision:
- 1:8d65cfc3a2e2
- Parent:
- 0:846e2321c637
File content as of revision 1:8d65cfc3a2e2:
#ifndef _PSE530_H_ #define _PSE530_H_ #include "mbed.h" /** * PSE530 Pressure Sensor */ class PSE530 { public: /** * Constructor */ PSE530(AnalogIn *ain) ; /** * destructor */ ~PSE530(void) ; /** * getPressure * @returns float pressure in kgf/cm2 */ float getPressure(void) ; private: AnalogIn *_ain ; } ; #endif /* _PSE530_H_ */