| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html>
- <head>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
- <script src="car.js"></script>
- <link rel="stylesheet" href="car.css">
- </head>
- <body>
- <h2>wz_mini Car Control</h2>
- <table style="width: 55%; border-collapse: collapse; float: left;" border="1">
- <tbody>
- <tr style="height: 21px;">
- <td style="width: 33.3333%; height: 21px; text-align: left;"><button id="forward_left" class="button">q: forward left</button></td>
- <td style="width: 33.3333%; height: 21px; text-align: center;"><button id="forward" class="button">w: forward</button></td>
- <td style="width: 33.3333%; height: 21px; text-align: right;"><button id="forward_right" class="button">e: forward right</button></td>
- </tr>
- <tr style="height: 18px;">
- <td style="width: 33.3333%; height: 18px; text-align: left;"><button class="button" id="left">a; left</button></td>
- <td style="width: 33.3333%; height: 18px; text-align: center;"><button class="button" id="reverse">s: rear</button></td>
- <td style="width: 33.3333%; height: 18px; text-align: right;"><button class="button" id="right">d: right</button></td>
- </tr>
- <tr style="height: 18px;">
- <td style="width: 33.3333%; height: 18px; text-align: left;"><button class="button" id="reverse_left">z: rear left</button></td>
- <td style="width: 33.3333%; height: 18px; text-align: center;"><button class="button" id="all_stop">x: all stop</button></td>
- <td style="width: 33.3333%; height: 18px; text-align: right;"><button class="button" id="reverse_right">c: rear right</button></td>
- </tr>
- <td style="width: 33.3333%; height: 21px; text-align: left;"><button id="headlight" class="button">H: headlight</button></td>
- <td style="width: 33.3333%; height: 18px; text-align: center;"><button class="button" id="irled">j: ir led</button></td>
- <td style="width: 33.3333%; height: 18px; text-align: center;"><button class="button" id="honk">b: honk</button></td>
- </tr>
- </tbody>
- </table>
- </body>
- </html>
|