Short in java is signed, while addUint16 is unsigned. That means that you cannot give that function values higher than 32,767 despite you want to add unsigned value into PebbleDictionary.
PebbleDictionary.addUint16() should be accepting int, so you can enter higher values.
Short in java is signed, while addUint16 is unsigned. That means that you cannot give that function values higher than 32,767 despite you want to add unsigned value into PebbleDictionary.
PebbleDictionary.addUint16() should be accepting int, so you can enter higher values.