/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
groveslide.cxx | 42 float volts = slide->voltage_value(); // Read voltage, board reference set at 5.0V local 43 fprintf(stdout, "%4d = %.2f V\n", (uint16_t)adc_value, volts);
|
gp2y0a.cxx | 54 upm::GP2Y0A *volts = new upm::GP2Y0A(1); local 57 // the measured voltage will probably not exceed 3.3 volts. 63 << volts->value(GP2Y0A_AREF, SAMPLES_PER_QUERY) << endl; 71 delete volts;
|
guvas12d.cxx | 54 upm::GUVAS12D *volts = new upm::GUVAS12D(0); local 62 << volts->value(GUVAS12D_AREF, SAMPLES_PER_QUERY) << endl; 70 delete volts;
|
/hardware/bsp/intel/peripheral/libupm/examples/python/ |
groveslide.py | 34 volts = slider.voltage_value() variable 36 print "Slider value: ", raw , " = %.2f" % volts , " V"
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
GUVAS12DSample.java | 42 upm_guvas12d.GUVAS12D volts = new upm_guvas12d.GUVAS12D(3); local 45 float value = volts.value(GUVAS12D_AREF, SAMPLES_PER_QUERY);
|
/hardware/bsp/intel/peripheral/libupm/src/gp2y0a/ |
gp2y0a.cxx | 64 float volts = float(val) * aref / float(m_aRes); local 66 return volts;
|
/hardware/bsp/intel/peripheral/libupm/src/guvas12d/ |
guvas12d.cxx | 62 float volts = (float)sum * aref / 1024.0; local 64 return volts;
|
/hardware/bsp/intel/peripheral/libupm/src/maxsonarez/ |
maxsonarez.cxx | 58 float volts = float(val) * (m_aref / m_aRes); local 60 return int(volts / m_vI);
|
/hardware/bsp/intel/peripheral/libupm/src/mg811/ |
mg811.cxx | 49 // volts) for your environment at the specified concentrations. Use 59 float MG811::volts() function in class:MG811 74 return (volts() / dcGain); 82 float val = volts();
|