<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link href="../layout/styles.css" rel="stylesheet" type="text/css"/>
<script src="../scripts/scripts.js" type="text/javascript"></script>
-<title>Padiwa</title>
+<title>Padiwa / DiRICH Threshold</title>
</head>
<body>
-<h2><a href="../">Padiwa</a></h2>
+<h2><a href="../">Padiwa Temp, ID, Thresholds and DiRICH Thresholds </a></h2>
<form acion="">
<table class="form"><tr class="head"><th colspan=2>Configuration
<tr title="4-digit hex board address for data query"><td>Board
<option value="temp">Temperature
<option value="id">ID
<option value="thresh">Thresholds
+ <option value="thresh_dirich">Thresholds for DiRICH
</select>
<tr title="Minimum & Maximum value for temperature color code"><td>Min/Max
<td><input onChange="setValues()" type="text" id="form_min" name="min" maxlength="6" value="10">
if(isShown[j])
o += "<th>"+c[j][0];
}
-
- for(i = 1; i <= 4; i++) {
+
+
+ var max_chains = 4;
+ if(option == "thresh_dirich") max_chains = 2;
+
+
+ for(i = 1; i <= max_chains; i++) {
o += "<tr class=\""+(i%2?"odd":"even")+"\"><th>"+(i-1);
for(j=0;j<b.length-1;j++) {
if(isShown[j]) {
o += "<span class=\"fixed\" style=\"background:"+col+"\">"+valhex+" "+valmV+"mV"+"</span><br>";
}
}
+ else if(option == "thresh_dirich") {
+ o += "<td>";
+ console.log(c);
+ for(k=1;k<=16;k++) {
+ val = c[j][(i-1)*16+k]&0xffff;
+ //console.log(val);
+ valhex = "---";
+ valmV = "---";
+ col = findcolor((val),0x6500,0x9000,0);
+ valhex = (val.toString(16));
+ valmV = (val*35E-3).toString(10).slice(0,7);
+ o += "<span class=\"fixed\" style=\"background:"+col+"\">"+valhex+" "+valmV+"mV"+"</span><br>";
+ //console.log(o);
+ }
+ }
}
}
}