Pebble.DataLog
Log analytics bytes to the Pebble data logging service.
Each log session is identified by a numeric tag (uint32 on device). Create tags with tag and pass them to logBytes or logInt32.
Native Pebble C API
- DataLogging on developer.repebble.com
Union Types
Tag
type TagA data logging session tag (uint32 on device).
Commands
logBytes
logBytes : Tag -> List Int -> Cmd msgLog a list of byte values (0–255) under the given tag.
logInt32
logInt32 : Tag -> Int -> Cmd msgLog a single 32-bit integer under the given tag.
Values
tag
tag : Int -> TagCreate a data logging tag from a uint32 session id.