Home
last modified time | relevance | path

Searched refs:celsius (Results 1 – 4 of 4) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/examples/python/
Dgrovetemp.py34 celsius = temp.value() variable
35 fahrenheit = celsius * 9.0/5.0 + 32.0;
37 % (celsius, fahrenheit)
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
Dgrovetemp.js36 var celsius = temp.value();
37 var fahrenheit = celsius * 9.0/5.0 + 32.0;
38 console.log(celsius + " degrees Celsius, or " +
/hardware/bsp/intel/peripheral/libupm/examples/c++/
Dgrovetemp.cxx43 int celsius = temp->value(); in main() local
44 int fahrenheit = (int) (celsius * 9.0/5.0 + 32.0); in main()
46 celsius, fahrenheit); in main()
/hardware/bsp/intel/peripheral/libupm/examples/java/
DGroveTempSample.java41 int celsius = temp.value(); in main() local
42 int fahrneheit = celsius * 2 + 32; in main()
44 System.out.println("Celsius: " + celsius); in main()