io.github.aleksas.arduino.simplerpc.Device Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arduino-simple-rpc Show documentation
Show all versions of arduino-simple-rpc Show documentation
Arduino simpleRPC API client library
package io.github.aleksas.arduino.simplerpc;
import java.util.HashMap;
public class Device {
public char endianness = '<';
public HashMap methods = new HashMap();
public String protocol = "";
public char size_t = 'H';
public int[] version = {0, 0, 0};
}