公告板
版本库
filestore
活动
搜索
登录
温居城
/
HomeApp
派生自
~xm/HomeApp
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
上传合并后的代码
黄学彪
2020-04-28
e22fdb94322e6cec38e5e4a9aec13d431a133fde
[~wjc/HomeApp.git]
/
ZigbeeApp
/
Shared
/
Phone
/
ZigBee
/
Device
/
HumiditySensor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using Newtonsoft.Json.Linq;
namespace ZigBee.Device
{
[System.Serializable]
public class HumiditySensor : CommonDevice
{
public HumiditySensor()
{
this.Type = DeviceType.FreshAirHumiditySensor;
}
}
}