Newer
Older
IRIS_REFACTOR_DH / irisIoControll / Service / IoControllService.cs
TAN YUE on 9 Sep 2021 449 bytes 20210909 初始提交。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace irisIoControll.Service
{
    public interface IoControllService
    {
        void setYellowFlash(bool bl);

        void initIO();

        int getSensorVal();

        void RedOn();

        void RedOff();

        void GreenOn();

        void GreenOff();

        void YellowOn();

        void YellowOff();

        void YellowFlash();
    }
}