Added IO table in web app

This commit is contained in:
anschrammh 2019-04-24 22:21:11 +02:00
parent 7637bda305
commit 1bd36e2a7a
2 changed files with 119 additions and 16 deletions

View File

@ -45,25 +45,123 @@
<p>Heap frag : <span id="fragInfo"></span> %</p> <p>Heap frag : <span id="fragInfo"></span> %</p>
<p>Max block : <span id="blockInfo"></span> Byte(s)</p> <p>Max block : <span id="blockInfo"></span> Byte(s)</p>
</td> </td>
</TR> </tr>
</table> </table>
</div> </div>
<div class="subSection"> <div class="subSection inline">
<h2 class="categorie">SdCard</h2> <div class="subSection">
<p>SDCard size : <span id="cardSize"></span></p> <h2 class="categorie">SdCard</h2>
<p>Unmount SDCard : <button onclick="sdCardMountUnmnout('unmount');">DO IT !</button></p> <p>SDCard size : <span id="cardSize"></span></p>
<p>Mount SDCard : <button onclick="sdCardMountUnmnout('mount');">DO IT !</button></p> <p>Unmount SDCard : <button onclick="sdCardMountUnmnout('unmount');">DO IT !</button></p>
<p>Mount SDCard : <button onclick="sdCardMountUnmnout('mount');">DO IT !</button></p>
</div>
<div class="subSection">
<h2 class="categorie">Real Time Clock</h2>
<p>RTC value : <span id="rtcValue" ></span></p>
<p>
Set RTC value : <br />
<br />
Time : <input type="number">:<input type="number">:<input type="number"><br />
Date : <input type="number">/<input type="number">/<input type="number"><br /><br />
<button>DO IT !</button>
</p>
</div>
</div> </div>
<div class="subSection"> <div class="subSection inline">
<h2 class="categorie">Real Time Clock</h2> <table>
<p>RTC value : <span id="rtcValue" ></span></p> <tr>
<p> <th colspan="9">
Set RTC value : <br /> <h2>PINS</h2>
<br /> </th>
Time : <input type="number">:<input type="number">:<input type="number"><br /> </tr>
Date : <input type="number">/<input type="number">/<input type="number"><br /><br /> <tr>
<button>DO IT !</button> <td>
</p>
</td>
<td>
<h2>P0</h2>
</td>
<td>
<h2>P1</h2>
</td>
<td>
<h2>P2</h2>
</td>
<td>
<h2>P3</h2>
</td>
<td>
<h2>P4</h2>
</td>
<td>
<h2>P5</h2>
</td>
<td>
<h2>P6</h2>
</td>
<td>
<h2>P7</h2>
</td>
</tr>
<tr>
<td>
<h2>MODE</h2>
</td>
<td>
<h2>OUT</h2>
</td>
<td>
<h2>OUT</h2>
</td>
<td>
<h2>OUT</h2>
</td>
<td>
<h2>OUT</h2>
</td>
<td>
<h2>OUT</h2>
</td>
<td>
<h2>OUT</h2>
</td>
<td>
<h2>OUT</h2>
</td>
<td>
<h2>OUT</h2>
</td>
</tr>
<tr>
<td>
<h2>LEVEL</h2>
</td>
<td>
<h2>1</h2>
</td>
<td>
<h2>1</h2>
</td>
<td>
<h2>1</h2>
</td>
<td>
<h2>1</h2>
</td>
<td>
<h2>1</h2>
</td>
<td>
<h2>1</h2>
</td>
<td>
<h2>1</h2>
</td>
<td>
<h2>1</h2>
</td>
</tr>
</table>
</div> </div>
</section> </section>
<footer> <footer>

View File

@ -88,3 +88,8 @@ input[type='number']
background-color:white; background-color:white;
min-width:60px; min-width:60px;
} }
.inline
{
display:inline-block;
border:1px black solid;
}