SLF4J

Up till now I outputted all required logging information via the most basic command: System.out.println(“Normal logging information”); System.err.println(“… when things go wrong information”); This is OK, but gives me little control. Therefore I took a look at the different Java libraries available and came to the conclusion that SLF4J is the one I need. Added …

Read More

16384 != 16383

According to the offset description: wheel status is controlled by a 2 byte storage wheel status is defined in offset ox0BE8 all wheels up should be stored internally as decimal value ‘0‘. all wheels down should be stored internally as decimal value ‘16383‘ A. Wheels up. That seems OK in the code below. ‘0’ is …

Read More