Changes
Page history
jessvi created page: Lab5
authored
Mar 25, 2015
by
Jesper Kurtzmann Svith
Show whitespace changes
Inline
Side-by-side
Lab5.markdown
View page @
188054bd
...
@@ -83,8 +83,7 @@ In the datalogger class we had to replace FileOutputStream with BufferedOutputSt
...
@@ -83,8 +83,7 @@ In the datalogger class we had to replace FileOutputStream with BufferedOutputSt
> dos.flush();
> dos.flush();
>
>
> String iString = iField.getText();
> String iString = iField.getText();
> float i = new Float(iString).intValue(); // The I value needs to be a float
> float i = new Float(iString).intValue(); // The I value needs to be a float value
> value in
> dos.writeFloat(i); // order to send decimal numbers.
> dos.writeFloat(i); // order to send decimal numbers.
> dos.flush();
> dos.flush();
>
>
...
...
...
...