tirecheck-device-sdk 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -3
- package/dist/index.cjs +354 -243
- package/dist/index.d.cts +653 -53
- package/dist/index.d.mts +653 -53
- package/dist/index.d.ts +653 -53
- package/dist/index.mjs +354 -243
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -166,10 +166,44 @@ You can contact tirecheck if you need support - admin@tirecheck.com
|
|
|
166
166
|
|
|
167
167
|
[x] Ability to test against real devices
|
|
168
168
|
|
|
169
|
-
[] Full CAN bridge support
|
|
169
|
+
[x] Full CAN bridge support
|
|
170
170
|
|
|
171
|
-
[] CAN Bridge Firmware Update support
|
|
171
|
+
[x] CAN Bridge Firmware Update support
|
|
172
172
|
|
|
173
|
-
[] FlexiGauge
|
|
173
|
+
[x] FlexiGauge
|
|
174
174
|
|
|
175
175
|
[] TPMS Router
|
|
176
|
+
|
|
177
|
+
## Devices
|
|
178
|
+
|
|
179
|
+
Each device has its own methods for communication. Generic bluetooth methods are not exposed.
|
|
180
|
+
|
|
181
|
+
### Bridge
|
|
182
|
+
|
|
183
|
+
- connect
|
|
184
|
+
- disconnect
|
|
185
|
+
- getVehicle
|
|
186
|
+
- setVehicle
|
|
187
|
+
- getConfiguration
|
|
188
|
+
- setConfiguration
|
|
189
|
+
- getSensorReading
|
|
190
|
+
- getVehicleReadings
|
|
191
|
+
- getAutolearnStatuses
|
|
192
|
+
- resetAutolearnStatuses
|
|
193
|
+
- updateFirmware
|
|
194
|
+
|
|
195
|
+
### Bridge OTA
|
|
196
|
+
|
|
197
|
+
- connect
|
|
198
|
+
- disconnect
|
|
199
|
+
- updateFirware
|
|
200
|
+
|
|
201
|
+
### Flexi Gauge TPMS
|
|
202
|
+
|
|
203
|
+
- connect
|
|
204
|
+
- disconnect
|
|
205
|
+
- onTreadDepth
|
|
206
|
+
- onButtonPress
|
|
207
|
+
- onTpms
|
|
208
|
+
- getBattery
|
|
209
|
+
- startTpmsScan
|