sensors.html 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  3. <head>
  4. <title>com.nokia.device.sensors</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript" src="script/platformservices.js" charset="utf-8"></script>
  7. <script type="text/javascript" src="script/templates.js" charset="utf-8"></script>
  8. <script type="text/javascript" src="script/platformservices_20_specific.js" charset="utf-8"></script>
  9. <script type="text/javascript" src="script/basic.js" charset="utf-8"></script>
  10. <link href="styles/reset.css" rel="stylesheet" type= "text/css" />
  11. <link href="styles/baseStyles.css" rel="stylesheet" type= "text/css" />
  12. </head>
  13. <body>
  14. <div id="wrap">
  15. <div id="content">
  16. <div class="channel">
  17. <h3>Rotation channel</h3>
  18. <div>
  19. <span class="title">Time stamp </span>
  20. <span id="Rotation_timeStamp">Initial</span>
  21. </div>
  22. <div>
  23. <span class="title">Rotation </span>
  24. <span id="Rotation_Rotation">X: NA, Y: NA, Z: NA</span>
  25. </div>
  26. </div>
  27. <div class="channel">
  28. <h3>Orientation channel</h3>
  29. <div>
  30. <span class="title">Time stamp </span>
  31. <span id="Orientation_timeStamp">Initial</span>
  32. </div>
  33. <div>
  34. <span class="title">Orientation </span>
  35. <span id="Orientation_deviceOrientation">Initial</span>
  36. </div>
  37. </div>
  38. <div class="channel">
  39. <h3>Accelerometer Axis channel</h3>
  40. <div>
  41. <span class="title">Time stamp </span>
  42. <span id="Accelerometer_timeStamp">Initial</span>
  43. </div>
  44. <div>
  45. <span class="title">Axis Data </span>
  46. <span id="Accelerometer_AxisData">X: NA, Y: NA, Z: NA</span>
  47. </div>
  48. </div>
  49. <ul class="list-toggle stack">
  50. <li>
  51. <ul class="toggle">
  52. <li>
  53. <label>
  54. Rotation channel
  55. </label>
  56. <input id="toggle_sensors_rotation" type="checkbox" name="toggle_sensors_rotation" />
  57. </li>
  58. </ul>
  59. </li>
  60. </ul>
  61. <ul class="list-toggle stack">
  62. <li>
  63. <ul class="toggle">
  64. <li>
  65. <label>
  66. Orientation channel
  67. </label>
  68. <input id="toggle_sensors_orientation" type="checkbox" name="toggle_sensors_orientation" />
  69. </li>
  70. </ul>
  71. </li>
  72. </ul>
  73. <ul class="list-toggle stack">
  74. <li>
  75. <ul class="toggle">
  76. <li>
  77. <label>
  78. Accelerometer channel
  79. </label>
  80. <input id="toggle_sensors_accelerometer" type="checkbox" name="toggle_sensors_accelerometer" />
  81. </li>
  82. </ul>
  83. </li>
  84. </ul>
  85. </div>
  86. </div>
  87. </body>
  88. </html>