How can I change major or minor from the Android device?
my estimote beacon version is A3.0.1
The following code after a successful value has not been minor changes.
private BeaconConnection connection;
connection.writeMinor(minor, new BeaconConnection.WriteCallback() {
@Override public void onSuccess() {
runOnUiThread(new Runnable() {
@Override public void run() {
showToast("Minor value updated");
}
});
}
@Override public void onError() {
runOnUiThread(new Runnable() {
@Override public void run() {
showToast("Minor not updated");
}
});
}
});