OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outputStr
(Results
1 - 25
of
35
) sorted by null
1
2
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
mhz16.js
40
outputStr
= "Make sure that the sensor has had " +
42
console.log(
outputStr
);
43
outputStr
= "or you will not get valid results.";
44
console.log(
outputStr
);
45
outputStr
= "The temperature reported is not the ambient temperature,";
46
console.log(
outputStr
);
47
outputStr
= "but rather the temperature of the sensor elements.";
48
console.log(
outputStr
);
56
outputStr
= "CO2 concentration: " + CO2_lib.intp_value(gas) +
59
console.log(
outputStr
);
[
all
...]
nunchuck.js
45
var
outputStr
= "stickX: " + nunchuck_obj.stickX +
47
console.log(
outputStr
);
48
outputStr
= "accelX: " + nunchuck_obj.accelX +
51
console.log(
outputStr
);
53
outputStr
= "button C: " +
55
console.log(
outputStr
);
56
outputStr
= "button Z: " +
58
console.log(
outputStr
);
lsm303.js
32
var successFail, coords,
outputStr
, accel;
42
outputStr
= "coor: rX " + coords.getitem(0)
45
console.log(
outputStr
);
46
outputStr
= "coor: gX " + myAccelrCompass.getCoorX()
49
console.log(
outputStr
);
58
outputStr
= "acc: rX " + accel.getitem(0)
61
console.log(
outputStr
);
62
outputStr
= "acc: gX " + myAccelrCompass.getAccelX()
65
console.log(
outputStr
);
mpr121.js
44
var
outputStr
= "Buttons Pressed: ";
49
outputStr
+= (i + " ");
55
outputStr
+= "None";
57
console.log(
outputStr
);
flex.js
40
var
outputStr
= "Flex value: " + myFlexSensor_obj.value();
41
console.log(
outputStr
);
hmtrp.js
30
var
outputStr
= "Usage:\n" +
37
console.log(
outputStr
);
92
var
outputStr
= "freq: " + freq.getitem(0) +
95
console.log(
outputStr
);
97
outputStr
= "modulation: " + parseInt(modulation.getitem(0));
98
outputStr
+= " Khz txPower: " + parseInt(txPower.getitem(0));
99
outputStr
+= " uartBaud: " + uartBaud.getitem(0);
100
console.log(
outputStr
);
adxl335.js
59
var
outputStr
;
64
outputStr
= "Raw Values: X: " +
68
console.log(
outputStr
);
71
outputStr
= "Acceleration: X: " +
77
console.log(
outputStr
);
grovewfs.js
49
outputStr
= "Millis: " + millis + " Flow Count: " + flowCount +
51
console.log(
outputStr
);
guvas12d.js
39
var
outputStr
= "AREF: " + g_GUVAS12D_AREF
42
console.log(
outputStr
);
otp538u.js
41
var
outputStr
= "Ambient temp: " +
46
console.log(
outputStr
);
ta12200.js
37
outputStr
= "Max ADC Value: " + maxVal +
39
console.log(
outputStr
);
/hardware/bsp/intel/peripheral/libupm/examples/python/
lsm303.py
58
outputStr
= "coor: rX {0} - rY {1} - rZ {2}".format(
61
print
outputStr
63
outputStr
= "coor: gX {0} - gY {1} - gZ {2}".format(
66
print
outputStr
77
outputStr
= "acc: rX {0} - rY {1} - Z {2}".format(
79
print
outputStr
81
outputStr
= "acc: gX {0} - gY {1} - gZ {2}".format(
84
print
outputStr
nunchuck.py
59
outputStr
= "stickX: {0}, stickY: {1}".format(
61
print
outputStr
62
outputStr
= "accelX: {0}, accelY: {1}, accelZ: {2}".format(
64
print
outputStr
66
outputStr
= "button C: {0}".format(
68
print
outputStr
69
outputStr
= "button Z: {0}".format(
71
print
outputStr
mpr121.py
54
outputStr
= "Buttons Pressed: "
57
outputStr
+= (str(i) + " ")
61
outputStr
+= "None"
63
print
outputStr
otp538u.py
52
outputStr
= ("Ambient temp: {0}"
56
print
outputStr
ta12200.py
52
outputStr
= "Max ADC Value: %s, current: %smA" % (maxVal, current)
53
print
outputStr
bmpx8x.py
49
outputStr
= ("pressure value = {0}"
58
print
outputStr
enc03r.py
59
outputStr
= ("Raw value: {0}, "
62
print
outputStr
groveehr.py
65
outputStr
= "Millis: {0} Beats: {1} Heart Rate: {2}".format(
67
print
outputStr
grovewfs.py
61
outputStr
= "Millis: {0} Flow Count: {1} Flow Rate: {2} LPM".format(
63
print
outputStr
mhz16.py
66
outputStr
= ("CO2 concentration: {0} PPM, "
69
print
outputStr
adxl335.py
63
outputStr
= "Raw Values: X: {0} Y: {1} Z: {2}".format(
66
print
outputStr
69
outputStr
= ("Acceleration: X: {0}g\n"
74
print
outputStr
h3lis331dl.py
62
outputStr
= ("Raw: X = {0}"
67
print
outputStr
70
outputStr
= ("Acceleration: AX = {0}"
75
print
outputStr
hmtrp.py
98
outputStr
= ("freq: {0} dataRate: {1} "
102
print
outputStr
104
outputStr
= "modulation: %d Khz txPower: %d uartBaud: %d" % (
107
print
outputStr
mma7660.py
67
outputStr
= ("Raw values: x = {0}"
72
print
outputStr
75
outputStr
= ("Acceleration: x = {0}"
80
print
outputStr
Completed in 80 milliseconds
1
2