完成红绿灯逻辑

This commit is contained in:
董宏宇
2021-08-18 18:47:33 +08:00
parent d61988f87c
commit 3b84838817
8 changed files with 198 additions and 37 deletions

View File

@@ -40,6 +40,28 @@ interface IMoGoWaringProvider : IMogoModuleProvider {
*/
fun disableWarningTrafficLight()
/**
* 修改红灯倒计时
*/
fun changeCountdownRed(redNum: Int)
/**
* 修改黄灯倒计时
*/
fun changeCountdownYellow(yellowNum: Int)
/**
* 修改绿灯倒计时
*/
fun changeCountdownGreen(greenNum: Int)
/**
* @param readNum 红灯倒计时
* @param yellowNum 黄灯倒计时
* @param greenNum 绿灯倒计时
*/
fun changeCountdownTrafficLightNum(readNum: Int, yellowNum: Int, greenNum: Int)
/**
* 展示限速预警
*