代码搜索结果

找到约 4,719 项符合 Temperature 的代码

daq.c

//完成温度的采集 #include "iom128v.h" #include "eeprom.h" #include "MyMacro.h" extern float Temperature; extern unsigned int SavedNum; extern unsigned char MCUState; extern unsigned char TimeScale;

readme.txt

=========================================================================================== Temperature 实验 =========================================================================================

colddays.c

// colddays.c -- finds percentage of days below freezing #include int main(void) { const int FREEZING = 0; float temperature; int cold_days = 0; int all_days = 0;

heatindexdisplay.java

package DP.Chapter2; public class HeatIndexDisplay implements Observer, DisplayElement { private float temperature; private float humidity; private Subject weatherData; private float heat

weatherdata.java

package DP.Chapter2; import java.util.ArrayList; public class WeatherData implements Subject { private ArrayList observers; private float temperature; private float humidity; privat

weather.java

import java.math.BigDecimal; public class Weather { private BigDecimal temperature; private BigDecimal humidity; private BigDecimal pressure; private String day; public

atmo_temp.m

function Temp = atmo_temp(alt) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Program: Atmospheric Temperature Calculation % Author: Brent Lewis(RocketLion@

temp_conversion.m

% Script file: temp_conversion.m % % Purpose: % To convert an input temperature from degrees Fahrenheit to % an output temperature in kelvins. % % Record of revisions: % Date

least_square.f90

module datas implicit none integer, parameter :: N=5 real :: temperature(N) = (/5.0,10.0,15.0,20.0,25.0/) ! 记录温度 real :: length(N) = (/1.047,1.112,1.1152,1.191,1.252/)! 记录不同温度下的长度 real

start_lo.sh

#!/bin/sh echo "Cleaning evrything\n" make clean echo "Starting Temperature reader \n" ./adc_read 60 15 7 & sleep 15m echo "Starting HTML constructor \n" ./read_data_average.perl 15 &