From 7228adf0ef64261655ae98b6a817718e34cd3449 Mon Sep 17 00:00:00 2001 From: awatlet <arnaud.watlet@umons.ac.be> Date: Fri, 28 Oct 2022 11:49:59 +0200 Subject: [PATCH] adds plays and stop buttons on http interface --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e76fd112..db104d00 100644 --- a/index.html +++ b/index.html @@ -18,8 +18,8 @@ <h1>OhmPi Acquisition Board</h1> <!-- nb stacks, on-time --> <button id="update_settingsBtn" type="button" class="btn btn-secondary" data-toggle="modal" data-target="#exampleModal">Settings</button> - <button id='runBtn' type="button" class="btn btn-primary">Run</button> - <button id='stopBtn' type="button" class="btn btn-warning">Interrupt</button> + <button id='runBtn' type="button" class="btn btn-primary">▶</button> + <button id='stopBtn' type="button" class="btn btn-warning">◼</button> <!-- upload button for csv which display the table ABMN --> <button id="removeDataBtn" type="button" class="btn btn-danger">Clear data</button> <button id="getDataBtn" type="button" class="btn btn-info">Get data</button> -- GitLab