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,9 +45,10 @@
<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 inline">
<div class="subSection"> <div class="subSection">
<h2 class="categorie">SdCard</h2> <h2 class="categorie">SdCard</h2>
<p>SDCard size : <span id="cardSize"></span></p> <p>SDCard size : <span id="cardSize"></span></p>
@ -65,6 +66,103 @@
<button>DO IT !</button> <button>DO IT !</button>
</p> </p>
</div> </div>
</div>
<div class="subSection inline">
<table>
<tr>
<th colspan="9">
<h2>PINS</h2>
</th>
</tr>
<tr>
<td>
</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>
</section> </section>
<footer> <footer>
<p class="footerText">Th3maz1ng, all right reserved | Hosted by the board itself</p> <p class="footerText">Th3maz1ng, all right reserved | Hosted by the board itself</p>

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;
}