// // $Id: USAGE_VARIABLES,v 1.4 2003/06/18 17:22:36 mysigp226 Exp $ // // wx200php Copyright (C) 2003 Tyler Allison // // (see the files README and COPYING for more details) // // List of available array attributes and variables you can use in your display output. The last part of each line shows what format the variable is in. For example: If you see ' 00.0' that means the output from that variable is '[space]00.0' excluding the single quotes. This allows for the developer to expect a consistant spacing in case they want to provide the user with a "clean" consistant interface without having to do their own formatting judgements based on the actual stored value. ///////////////////// Temperature Values ////////////// $temp_array['TempIndoor'] : Current Temp Indoor : ' 00.0' $temp_array['TempOutdoor'] : Current Temp Outdoor : ' 00.0' // All the following temps are based on history since the console was powered on. // // If the console was turned off, unplugged, etc.. the console looses historical // // information. Yes, wx200d can store historical information but it to not provide// // access to that information via the wx200 client interface. wx200d // // simply provides access to what the console says. // $temp_array['TempIndoorHi'] : High Temp Indoor since console power on: ' 00.0' $temp_array['TempOutdoorHi'] : High Temp Outdoor since console power on: ' 00.0' $temp_array['TempIndoorLo'] : Low Temp Indoor since console power on: ' 00.0' $temp_array['TempOutdoorLo'] : Low Temp Outdoor since console power on: ' 00.0' $temp_array['TempOutHiDay'] : Day of the month Outdoor High Temp was reached: '00' $temp_array['TempOutHiMon'] : Mon of the year Outdoor High Temp was reached: ' 0' $temp_array['TempOutHiHour'] : Hour of the time Outdoor High Temp was reached: '00' $temp_array['TempOutHiMin'] : Min of the time Outdoor High Temp was reached: '00' $temp_array['TempOutLoDay'] : Day of the month Outdoor Low Temp was reached: '00' $temp_array['TempOutLoMon'] : Mon of the year Outdoor Low Temp was reached: ' 0' $temp_array['TempOutLoHour'] : Hour of the time Outdoor Low Temp was reached: '00' $temp_array['TempOutLoMin'] : Min of the time Outdoor Low Temp was reached: '00' $temp_array['TempInHiDay'] : Day of the month Indoor High Temp was reached: '00' $temp_array['TempInHiMon'] : Mon of the year Indoor High Temp was reached: ' 0' $temp_array['TempInHiHour'] : Hour of the time Indoor High Temp was reached: '00' $temp_array['TempInHiMin'] : Min of the time Indoor High Temp was reached: '00' $temp_array['TempInLoDay' ] : Day of the month Indoor Low Temp was reached: '00' $temp_array['TempInLoMon'] : Mon of the year Indoor Low Temp was reached: ' 0' $temp_array['TempInLoHour'] : Hour of the time Indoor Low Temp was reached: '00' $temp_array['TempInLoMin'] : Min of the time Indoor Low Temp was reached: '00' //////////////////////////// Wind Values //////////////////////////// $wind_array[''] /////////////////////////// Barometer Values //////////////////////// $barom_array[''] /////////////////////////// Time Values ///////////////////////////// $time_array[''] ////////////////////////// Rain Values ///////////////////////////// $rain_array[''] ////////////////////////// Humidity Values ////////////////////////// $humidity_array[''] //////////////////////////////////END////////////////////////////////