mirror of
https://github.com/brendanhaines/RasPi.git
synced 2024-11-10 00:54:40 -07:00
11 lines
258 B
Java
11 lines
258 B
Java
|
/**
|
||
|
* Written By Brendan Haines
|
||
|
*/
|
||
|
|
||
|
class TCPclientExample {
|
||
|
public static void main( String args[] ) {
|
||
|
TCPclient client = new TCPclient( "192.168.42.1", 51719 );
|
||
|
System.out.println( "Setup successful" );
|
||
|
client.close();
|
||
|
}
|
||
|
}
|