hello...
I want to make a GUI for display a compass. I have find a SteelSeries library from Harmonic Code
But due to I am a newbie in java, I don't understand how to use it. I have write in netbean like this but nothing happened
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package javaapplication3; import eu.hansolo.steelseries.extras.Compass; /** * * @author aang */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here Compass kompas = new Compass(); kompas.init(100,100); kompas.setValue(100); kompas.setTitle("Kompas"); } }
Can someone help me how to use the library please?
these links I think I need to learn the library
souce code:
SteelSeries: Repository_V2: SteelSeriesFull: src: eu: hansolo: steelseries: extras: Compass.java — Project Kenai
javadoc:
Generated Documentation (Untitled)
thx