JVM Languages
tini.txt
Associated article: The TINI Internet Interface
Tags: JVM Languages
Published source code accompanying the article by Al Williams in which he uses Dallas Semiconductor's Tiny InterNet Interface (TINI) board--that includes a Java-capable CPU, 512K of nonvolatile memory, and an Ethernet transceiver--to build a typical Internet appliance. Also see TINI.ZIP.
The TINI Internet Interface
by Al Williams
Listing One
// TINI sender class
import java.io.*;
import java.net.*;
import javax.comm.*;
public class SerialSender
{
SerialPort rs232;
Socket sock;
OutputStreamWriter os;
InputStream is;
String msg;
public static void main(String args[])
{
...


