Skip to content
Snippets Groups Projects
Commit 2e486633 authored by Stefan Zabka's avatar Stefan Zabka
Browse files

ble:card10 personal state sending the correct byte array now

parent c2466320
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,6 @@ enum class PersonalState(val v: Int) {
CHAOS(0x0200),
COMMUNICATION(0x0300),
CAMP(0x0400)
}
val LEDS_ABOVE_CHARACTERISTIC_UUID = UUID.fromString("42230220-2342-2342-2342-234223422342")
......
......@@ -41,7 +41,7 @@ class Card10Service(
timeCharacteristic.writeType = BluetoothGattCharacteristic.WRITE_TYPE_NO_RESPONSE
rocketsCharacteristic.writeType = BluetoothGattCharacteristic.WRITE_TYPE_NO_RESPONSE
ledsAboveCharacteristic.writeType = BluetoothGattCharacteristic.WRITE_TYPE_NO_RESPONSE
personalStateCharacteristic.writeType = BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT
personalStateCharacteristic.writeType = BluetoothGattCharacteristic.WRITE_TYPE_NO_RESPONSE
}
fun setTime() {
......@@ -66,7 +66,6 @@ class Card10Service(
personalStateCharacteristic.value[0] = value.v.toByte()
personalStateCharacteristic.value[1] = (value.v shr 8).toByte()
println("=== Writing personal State array : ${personalStateCharacteristic.value[0]},${personalStateCharacteristic.value[1]} ")
ConnectionService.writeCharacteristic(personalStateCharacteristic)
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment