代码搜索结果

找到约 286 项符合 Humidity 的代码

humidity.plg

礦ision3 Build Log Project: F:\源码学习\51开发板源程序\51开发板源程序\c51prj\hs_tl555\humidity.uv2 Project File Date: 07/10/2007 Output: Build target 'Target 1

humidity.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,1, 0x0 Options 1,0,0 /

humidity.lst

C51 COMPILER V8.08 HUMIDITY 12/04/2007 13:03:12 PAGE 1 C51 COMPILER V8.08, COMPILATION OF MODULE HUMIDITY OBJECT MODULE PLACED I

humidity.h

//$Id: Humidity.h,v 1.2 2005/06/13 21:28:33 jpolastre Exp $ /* "Copyright (c) 2000-2005 The Regents of the University of California. * All rights reserved. * * Permission to use, copy, modify, a

humidity.h

//$Id: Humidity.h,v 1.2 2005/06/13 21:28:33 jpolastre Exp $ /* "Copyright (c) 2000-2005 The Regents of the University of California. * All rights reserved. * * Permission to use, copy, modify, a

mica2-humidity.h

// This file is part of MANTIS OS, Operating System // See http://mantis.cs.colorado.edu/ // // Copyright (C) 2003,2004,2005 University of Colorado, Boulder // // This program is free software; yo

mica2-humidity.c

// This file is part of MANTIS OS, Operating System // See http://mantis.cs.colorado.edu/ // // Copyright (C) 2003,2004,2005 University of Colorado, Boulder // // This program is free software; yo

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); }