protocol.go 143 B

123456
  1. package protocol
  2. type Data struct {
  3. Temperature float32 `json:"temperature"` // 温度
  4. Humidly float32 `json:"humidly"` // 湿度
  5. }