Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus authored Apr 3, 2019
1 parent 29bb1ca commit c0aa175
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,11 @@ public class ExampleClient extends UDPSimplePacketComs {
public static ExampleClient get(String name) throws Exception {
return new ExampleClient(UDPSimplePacketComs.getAllAddresses(name).iterator().next());
}
public void send(double d){
double [] data = new double [1];
data[0]=d;
writeFloat(1871,data);
}
}
Expand Down

0 comments on commit c0aa175

Please sign in to comment.