HomeSort by relevance Sort by last modified time
    Searched refs:volts (Results 1 - 12 of 12) sorted by null

  /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/c++/
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;
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);
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
groveslide.js 35 var volts = groveSlide.voltage_value();
38 console.log("Slider Value: " + raw + " = " + volts.toFixed(2) + " 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/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();
mg811.h 109 float volts();
  /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;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
monsoon_profiler.py 8 Data collected is a namedtuple of (amps, volts), at 5000 samples/second.
44 plot_data = [(i / 5000., sample.amps * sample.volts)
53 power_samples = [s.amps * s.volts for s in samples]

Completed in 457 milliseconds