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-dsp
Fork of mbed-os-example-blinky by
Diff: main.cpp
- Revision:
- 36:603944df2332
- Parent:
- 35:935167115537
--- a/main.cpp Wed Mar 29 13:14:20 2017 +0000 +++ b/main.cpp Wed Mar 29 13:33:26 2017 +0000 @@ -11,3 +11,10 @@ } } +//Presuming that input is temp as a value and hum in procent. +double speedofsound(double temp, double hum){ + //Calculations done in Matlab + speed = 331.1190 + 0.6016*temp + 0.0126*hum; + return speed; +} +