Discussions
What is identified as a 'track' in the raw telematic data?
What is identified as a 'track' in the raw telematic data?
Posted by Matthew Davis about 1 year ago
What is vehicle 'angle'?
What is vehicle 'angle'?
Posted by Matthew Davis about 1 year ago
Where did vehicle speed come from? Is it calculated based on time and distance or extracted from a censor?
Where did vehicle speed come from? Is it calculated based on time and distance or extracted from a censor?
Posted by Matthew Davis about 1 year ago
When capturing a Track, how is the StartDate and EndDate determined?
When capturing a Track, how is the StartDate and EndDate determined?
Posted by Matthew Davis about 1 year ago
How to simulate rides for Android
Hi, I see we can emulate for IOS (https://docs.damoov.com/docs/ios-simulator)
Is there any chance to do this programmatically for android?
Posted by Luis Santiago about 1 year ago
Use Flutter Wrapper
How do I use Flutter telematicsSDK available on Github to make my own Flutter application? Does it contain SDK?
Need some guidance over here. Thanks
Posted by Louis about 1 year ago
Trip Requirements
https://docs.damoov.com/docs/tools-for-testing
Does a trip have to meet all three of these requirements? ie. > 60s, > 2km AND > 30km/h?
Additionally, are these values configurable? In some of our use cases it is likely that drivers will be travelling at speeds well below 30km/h for the duration of the trip.
Posted by Sam Helman about 1 year ago
Flutter SDK - addFutureTrackTag method on iOS does not work
Hi,
I am trying to call the addFutureTrackTag method using the Flutter SDK, like this:
```
await TrackingApi().addFutureTrackTag(tag: tag, source: source);
```
This works perfectly in Android, but throws an error in iOS which crashes the app:
```
telematics_sdk/SwiftTelematicsSDKPlugin.swift:210: Fatal error: Unexpectedly found nil while unwrapping an Optional value
```
I noticed in the SwiftTelematicsSDKPlugin.swif (https://github.com/Mobile-Telematics/telematicsSDK-demoapp-flutter-/blob/main/ios/Classes/SwiftTelematicsSDKPlugin.swift) handle function, "addFutureTrackTag" is mapped to the addTrackTags method. Is this intentional? To me, it seems incorrect.
lines 63 and 63:
```
....
case "addFutureTrackTag":
addTrackTags(call, result)
....
```
I think this needs to be:
```
....
case "addFutureTrackTag":
addFutureTrackTag(call, result)
....
```
Posted by Sam Helman about 1 year ago
How to use Telematics SDK with Bluetooth OBD in React Native app?
I am going to get the mileage from the Bluetooth OBD(ELM 327) by using Telematics SDK in my react-native app.
So I installed the React Native demo app and it works well.
https://github.com/Mobile-Telematics/telematicsSDK-demoapp-react
But I want to use the Bluetooth OBD and I think there is no function to connect the Bluetooth OBD with SDK in this SDK(for React Native).
Q1. How to connect the Bluetooth OBD with this SDK in React Native app?
Q2. How to get the mileage from the SDK with Bluetooth OBD in React Native app?
Posted by Leonid Lewis over 1 year ago
API to deactive user (but not delete)
Hi, I am unable to find the API call in the documentation to deactivate a user (but not delete them). This is something you can do in the Hub.
Posted by Daniel Lajeunesse over 1 year ago