Displaying 1 result from an estimated 1 matches for "input_voltage_nomin".
Did you mean:
input_voltage_nominal
2014 Sep 25
2
TRIPPLITE OMNIVSINT80 Compatibility
...returned that helps differentiate its a 240v model I dont
know.
This is, at least, consistent with decode_v() in the driver src:
void decode_v(const unsigned char *value)
{
unsigned char ivn, lb;
int bv = hex2d(value+2, 2);
ivn = value[1];
lb = value[4];
switch(ivn) {
case '0': input_voltage_nominal =
input_voltage_scaled = 100;
break;
case '1': input_voltage_nominal =
input_voltage_scaled = 120;
break;
case '2': input_voltage_nominal =
input_voltage_scaled = 230;
break;
case '3': input_voltage_nominal = 208;
input_vol...