From df2a8ccd0ff040ffbb369963a71c98a85b322943 Mon Sep 17 00:00:00 2001 From: Christian Klein Date: Sun, 9 May 2021 20:10:12 +0200 Subject: [PATCH] Updated Documentation --- out/index.html | 16 ++++++++++++---- src/Main.elm | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/out/index.html b/out/index.html index 69761c0..5ecb6cd 100644 --- a/out/index.html +++ b/out/index.html @@ -71,8 +71,8 @@ Nachdem im RAM oder im µCode ein anderer Eintrag ausgewählt wurde, kann automatisch zum Eintrag gescrollt werden
  • - Load Example - Mit diesem Knopf kannst du ein Beispielprogramm in den PC laden. Dabei wird dein momentanes Programm überschrieben. + Configs + Hier können sie die momentane Konfigration herunterladen, selber eine Hochladen oder aus einer Liste von Beispielen laden.
  • @@ -193,6 +193,10 @@ µCounter = 0 Setzte den µCounter zurück + + Signal End of Program + Zeige ein Popup, dass das Ende des Programms signalisiert. + @@ -232,8 +236,8 @@ After a value in RAM or in the µCodes is selected you can automatically scroll to them
  • - Load Example - Click this button and select an example you want to load. This will overwrite the whole pc including ram and µCode + Configs + Download the current config, import a config from your machine or choose an example.
  • @@ -353,6 +357,10 @@ µCounter = 0 Set µCounter to 0 + + Signal End of Program + Show an alert that the end of program is reached. + diff --git a/src/Main.elm b/src/Main.elm index 7f23641..b5854a6 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -396,7 +396,7 @@ viewPC model = [ HAttr.for "enableScrolling" ] [ text "Autoscroll" ] ] - , button [ onClick <| Msg_DEsmpl_Open True ] [ text "Load Example" ] + , button [ onClick <| Msg_DEsmpl_Open True ] [ text "Configs" ] ] , div [class "pc-main"] [ Html.map Msg_PC <| PC.view model.pc_model ] , lazy viewExamples model