[6.8.2] add func of fusion color

This commit is contained in:
zhongchao
2024-12-04 11:34:32 +08:00
parent b92f8e69fd
commit 5e477b5873
12 changed files with 120 additions and 15 deletions

View File

@@ -164,6 +164,12 @@ interface IMoGoAutopilotControlProvider : IMoGoFunctionServerProvider {
*/
fun setDemoMode(isEnable: Boolean)
/**
* 融合颜色
* 司机屏同步给乘客屏
*/
fun setFusionColor(isEnable: Boolean)
/**
* 是否忽略条件直接绘制
* 司机屏同步给乘客屏

View File

@@ -1,9 +1,11 @@
package com.mogo.eagle.core.function.api.telematic
interface IReceivedMsgListener {
fun onReceivedMsg(type: Int, byteArray: ByteArray)
fun onReceivedMsg(type: Int, byteArray: ByteArray){}
fun onReceivedServerSn(sn: String?) {}
fun onDemoMode(isDemoMode: Boolean) {}
fun onFusionColor(fusionColor: Boolean){}
}