1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.flightfeather.obd.socket.eunm
|
| /**
| * obd 命令单元
| * @author riku
| * Date: 2019/9/12
| */
| enum class ObdCommandUnit constructor(val value: Int) {
| CarRegister(1),
| RealTimeData(2),
| ReplacementData(3),
| CarLogOut(4),
| TimeCalibration(5)
| }
|
|