Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Andy B-S
Companion App Android
Commits
c4dd4a06
Commit
c4dd4a06
authored
Aug 22, 2019
by
Anon
Browse files
Create Card10Service.
parent
beeafb0a
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/de/ccc/events/badge/card10/common/ConnectionService.kt
View file @
c4dd4a06
...
...
@@ -26,8 +26,10 @@ import android.bluetooth.*
import
android.content.Context
import
android.util.Log
import
de.ccc.events.badge.card10.CARD10_BLUETOOTH_MAC_PREFIX
import
de.ccc.events.badge.card10.CARD10_SERVICE_UUID
import
de.ccc.events.badge.card10.R
import
de.ccc.events.badge.card10.filetransfer.LowEffortService
import
de.ccc.events.badge.card10.time.Card10Service
import
java.lang.IllegalStateException
import
java.lang.NullPointerException
import
java.util.*
...
...
@@ -37,6 +39,7 @@ private const val TAG = "ConnectionService"
object
ConnectionService
{
var
device
:
BluetoothDevice
?
=
null
var
leService
:
LowEffortService
?
=
null
var
card10Service
:
Card10Service
?
=
null
var
mtu
=
100
private
var
connection
:
BluetoothGatt
?
=
null
...
...
@@ -98,6 +101,8 @@ object ConnectionService {
if
(
service
.
uuid
==
fileServiceUuid
)
{
leService
=
LowEffortService
(
service
)
}
else
if
(
service
.
uuid
==
CARD10_SERVICE_UUID
)
{
card10Service
=
Card10Service
(
service
)
}
}
...
...
app/src/main/java/de/ccc/events/badge/card10/time/Card10Service.kt
0 → 100644
View file @
c4dd4a06
/*
* Copyright by the original author or authors.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package
de.ccc.events.badge.card10.time
import
android.bluetooth.BluetoothGattCharacteristic
import
android.bluetooth.BluetoothGattService
import
de.ccc.events.badge.card10.TIME_CHARACTERISTIC_UUID
import
de.ccc.events.badge.card10.common.ConnectionService
import
java.nio.ByteBuffer
class
Card10Service
(
service
:
BluetoothGattService
)
{
private
val
timeCharacteristic
:
BluetoothGattCharacteristic
init
{
timeCharacteristic
=
service
.
getCharacteristic
(
TIME_CHARACTERISTIC_UUID
)
timeCharacteristic
.
writeType
=
BluetoothGattCharacteristic
.
WRITE_TYPE_NO_RESPONSE
}
fun
setTime
()
{
val
buffer
=
ByteBuffer
.
allocate
(
8
)
buffer
.
putLong
(
System
.
currentTimeMillis
())
timeCharacteristic
.
value
=
buffer
.
array
()
ConnectionService
.
writeCharacteristic
(
timeCharacteristic
)
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment