package com.iailab.netsdk.lib.enumeration;

import com.iailab.netsdk.lib.NetSDKLib;


/**
 * 温度单位
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 20:21
 */
public class EM_TEMPERATURE_UNIT extends NetSDKLib.SdkStructure {

    /**
     *  未知
     */
    public static final int					EM_TEMPERATURE_UNKNOWN = -1;
    /**
     *  摄氏度
     */
    public static final int					EM_TEMPERATURE_CENTIGRADE = 0;
    /**
     *  华氏度
     */
    public static final int					EM_TEMPERATURE_FAHRENHEIT = 1;
    /**
     *  开尔文
     */
    public static final int					EM_TEMPERATURE_KELVIN = 2;
}