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.
Fork of g3_waterplay by
Diff: Waterplay.cpp
- Revision:
- 0:ad9362f18797
diff -r 000000000000 -r ad9362f18797 Waterplay.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Waterplay.cpp Thu Jun 02 17:53:02 2016 +0000 @@ -0,0 +1,16 @@ +#include "Waterplay.h" +#include "mbed.h" + +Waterplay::Waterplay(mbed::Serial &serial):_serial(serial) +{ + _serial.printf("init\n\r"); +} + + + + + +void Waterplay::calculate(int n) +{ + _serial.printf("calculate\n\r"); +}