Package org.sunspotworld

Source Code of org.sunspotworld.Main

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.sunspotworld;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import javax.microedition.io.Connector;

import rpc.connection.StreamedRPC;

/**
*
* @author ajc
*/
public class Main {

    public static void main(String[] args) throws IOException {

        InputStream in = Connector.openInputStream("serial://usb");
        OutputStream out = Connector.openOutputStream("serial://usb");
        StreamedRPC hsc = new StreamedRPC(in, out);
        hsc.start();

    }
}
TOP

Related Classes of org.sunspotworld.Main

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.