A Java library for using the Arctic Spa's API. API details are here.
KSpa is licensed under the 2-Clause BSD license.
<groupId>com.khubla.kspa</groupId>
<artifactId>kspa</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
The class "com.khubla.kspa.Spa" is the entry point. Simply pass it an API key in the ctor and call the methods.
Spa spa = new Spa("abc123");
Status status = spa.getStatus();
System.out.println("Temperature :"+status.getTemperature());
Spa spa = new Spa("abc123");
spa.setLights(StateEnum.ON);
spa.setBlower(2, StateEnum.ON);