* @throws InterruptedException
*/
public static void main(String[] args) throws InterruptedException {
// implementing customized behaviour
NativeLCD lcd = NativeLCD.getInstance();
lcd.setBehaviour(new MyLCD());
NativeButton btn = NativeButton.getInstance();
MyButton myBtn = new MyButton();
btn.setBehaviour(myBtn);