jessvi created page: Lab5 authored by Jesper Kurtzmann Svith's avatar Jesper Kurtzmann Svith
......@@ -83,8 +83,7 @@ In the datalogger class we had to replace FileOutputStream with BufferedOutputSt
> dos.flush();
>
> String iString = iField.getText();
> float i = new Float(iString).intValue(); // The I value needs to be a float
> value in
> float i = new Float(iString).intValue(); // The I value needs to be a float value
> dos.writeFloat(i); // order to send decimal numbers.
> dos.flush();
>
......
......