using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.SCChip
{
///
/// 搅拌器
///
public enum IC_ROTOR
{
///
/// 开始搅拌
///
OPEN_ROTOR = 0x01,
///
/// 停止搅拌
///
CLOSE_ROTOR = 0x00
}
}