mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
20 lines
600 B
Kotlin
20 lines
600 B
Kotlin
package com.geeksville.mesh.service
|
|
|
|
const val prefix = "com.geeksville.mesh"
|
|
|
|
|
|
//
|
|
// standard EXTRA bundle definitions
|
|
//
|
|
|
|
// a bool true means now connected, false means not
|
|
const val EXTRA_CONNECTED = "$prefix.Connected"
|
|
const val EXTRA_PROGRESS = "$prefix.Progress"
|
|
|
|
/// a bool true means we expect this condition to continue until, false means device might come back
|
|
const val EXTRA_PERMANENT = "$prefix.Permanent"
|
|
|
|
const val EXTRA_PAYLOAD = "$prefix.Payload"
|
|
const val EXTRA_NODEINFO = "$prefix.NodeInfo"
|
|
const val EXTRA_PACKET_ID = "$prefix.PacketId"
|
|
const val EXTRA_STATUS = "$prefix.Status"
|