代码搜索结果
找到约 286 项符合
Humidity 的代码
testshtisl.h
#ifndef TEST_SENSOR_SHTISL_H
#define TEST_SENSOR_SHTISL_H
#define ISL_ADDRESS 0X44
//29001手册中定义的slave address
typedef nx_struct TestSensorMsg {
nx_uint16_t Temper;
nx_uint16_t Humidity;
testshtisl.h
#ifndef TEST_SENSOR_SHTISL_H
#define TEST_SENSOR_SHTISL_H
#define ISL_ADDRESS 0X44
//29001手册中定义的slave address
typedef nx_struct TestSensorMsg {
nx_uint16_t Temper;
nx_uint16_t Humidity;
weatherdata.java
package headfirst.observer.weather;
import java.util.*;
public class WeatherData implements Subject {
private ArrayList observers;
private float temperature;
private float humidity;
private floa
currentconditionsdisplay.java
package headfirst.observer.weather;
public class CurrentConditionsDisplay implements Observer, DisplayElement {
private float temperature;
private float humidity;
private Subject weatherData;
observer.java
package headfirst.observer.weather;
public interface Observer {
public void update(float temp, float humidity, float pressure);
}
humidity_monitor.zhtml
Current humidity reading
Current humidity reading
The current humi
humidity_monitor.zhtml
Current humidity reading
Current humidity reading
The current humi
humidity_monitor.zhtml
Current humidity reading
Current humidity reading
The current humi
humidity_monitor.zhtml
Current humidity reading
Current humidity reading
The current humi
weatherdata.java
package headfirst.observer.weather;
import java.util.*;
public class WeatherData implements Subject {
private ArrayList observers;
private float temperature;
private float humidity;
private floa