mirror of
https://github.com/ArduPilot/ardupilot.git
synced 2026-02-05 06:35:23 -06:00
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
<html>
|
|
<head>
|
|
<meta http-equiv="refresh" content="1">
|
|
</head>
|
|
<body>
|
|
<h1>Server Side Scripting Test</h1>
|
|
<table>
|
|
<tr><th>Roll</th><th>Pitch</th><th>Yaw</th></tr>
|
|
<tr>
|
|
<td><?lua return tostring(math.deg(ahrs:get_roll_rad()))?></td>
|
|
<td><?lstr math.deg(ahrs:get_pitch_rad())?></td>
|
|
<td><?lstr math.deg(ahrs:get_yaw_rad())?></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|