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: Grove_temperature
Revision 1:788ae528afd1, committed 2019-08-13
- Comitter:
- bastienvincke
- Date:
- Tue Aug 13 16:41:57 2019 +0000
- Parent:
- 0:21d86aae6b2a
- Commit message:
- V1 BV
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Aug 07 04:36:25 2018 +0000
+++ b/main.cpp Tue Aug 13 16:41:57 2019 +0000
@@ -1,14 +1,11 @@
#include "mbed.h"
#include "Grove_temperature.h"
-Grove_temperature temp(A4);
-Serial pc(USBTX, USBRX);
+Grove_temperature temp(PA_1); // La thermistance est connecté sur le port ANA A1
-// main() runs in its own thread in the OS
int main() {
- pc.baud(115200);
while (true) {
- pc.printf("temperature = %2.2f\n", temp.getTemperature());
+ printf("temperature = %2.2f\n", temp.getTemperature());
wait(1);
}
}