Update to use PC_8 on NUCLEO_L073RZ

Dependencies:   DS1820 mbed-dev

Fork of DS1820_HelloWorld by Erik -

Revision:
7:a1da4d246dd4
Parent:
5:fb40c1f698f1
--- a/main.cpp	Fri Jan 27 00:18:07 2017 +0000
+++ b/main.cpp	Tue Feb 14 20:32:19 2017 +0000
@@ -39,6 +39,7 @@
 DS1820 probe(DATA_PIN);
  
 int main() {
+    DS1820::unassignedProbe(DATA_PIN);
     while(1) {
         probe.convertTemperature(true, DS1820::all_devices);         //Start temperature conversion, wait until ready
         printf("It is %3.1foC\r\n", probe.temperature());