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.
Revision 8:f8c0d1bb0cd9, committed 2018-04-10
- Comitter:
- summers
- Date:
- Tue Apr 10 11:44:33 2018 +0000
- Parent:
- 7:9cbf4da70f36
- Commit message:
- correct float in temp
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Apr 10 11:43:05 2018 +0000 +++ b/main.cpp Tue Apr 10 11:44:33 2018 +0000 @@ -67,7 +67,7 @@ // pc.printf("%f\t",T/100.0); // pc.printf("%f\r\n",P/100.0); - pc.printf("%i\t%i\t%f\t%f\n",D1,D2,T/100,P/100.0); + pc.printf("%i\t%i\t%f\t%f\n",D1,D2,T/100.0,P/100.0); wait(1.0); } }