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: NetServices ThingSpeakEthernet mbed
Sensor.cpp
- Committer:
- tsoic
- Date:
- 2015-11-29
- Revision:
- 7:1da0a084cd69
- Parent:
- 6:ebbde59c5a1d
File content as of revision 7:1da0a084cd69:
#include "Sensor.h"
#include "mbed.h"
Sensor::Sensor(PinName sensorPin, float Koef) : sensorInput(sensorPin), K(Koef) {
}
float Sensor::read() {
readVal[0] = sensorInput;
realVal = readVal[0]; //* Računanje srednje vrijednosti
return realVal *= K;
}