Newer
Older
IRIS_REFACTOR / irisIoControll / Service / IoControllService.cs
yanxiaowei on 11 Aug 2020 449 bytes first commit
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();
    }
}