Updated Documentation

This commit is contained in:
2021-05-09 20:10:12 +02:00
parent 25c5df9e6d
commit df2a8ccd0f
2 changed files with 13 additions and 5 deletions

View File

@ -71,8 +71,8 @@
Nachdem im RAM oder im µCode ein anderer Eintrag ausgewählt wurde, kann automatisch zum Eintrag gescrollt werden Nachdem im RAM oder im µCode ein anderer Eintrag ausgewählt wurde, kann automatisch zum Eintrag gescrollt werden
</li> </li>
<li> <li>
<b>Load Example</b> <b>Configs</b>
Mit diesem Knopf kannst du ein Beispielprogramm in den PC laden. Dabei wird dein momentanes Programm überschrieben. Hier können sie die momentane Konfigration herunterladen, selber eine Hochladen oder aus einer Liste von Beispielen laden.
</li> </li>
</ul> </ul>
@ -193,6 +193,10 @@
<td>µCounter = 0</td> <td>µCounter = 0</td>
<td>Setzte den µCounter zurück</td> <td>Setzte den µCounter zurück</td>
</tr> </tr>
<tr>
<td>Signal End of Program</td>
<td>Zeige ein Popup, dass das Ende des Programms signalisiert.</td>
</tr>
</tbody> </tbody>
</table> </table>
@ -232,8 +236,8 @@
After a value in RAM or in the µCodes is selected you can automatically scroll to them After a value in RAM or in the µCodes is selected you can automatically scroll to them
</li> </li>
<li> <li>
<b>Load Example</b> <b>Configs</b>
Click this button and select an example you want to load. This will overwrite the whole pc including ram and µCode Download the current config, import a config from your machine or choose an example.
</li> </li>
</ul> </ul>
@ -353,6 +357,10 @@
<td>µCounter = 0</td> <td>µCounter = 0</td>
<td>Set µCounter to 0</td> <td>Set µCounter to 0</td>
</tr> </tr>
<tr>
<td>Signal End of Program</td>
<td>Show an alert that the end of program is reached.</td>
</tr>
</tbody> </tbody>
</table> </table>

View File

@ -396,7 +396,7 @@ viewPC model =
[ HAttr.for "enableScrolling" ] [ HAttr.for "enableScrolling" ]
[ text "Autoscroll" ] [ 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 ] , div [class "pc-main"] [ Html.map Msg_PC <| PC.view model.pc_model ]
, lazy viewExamples model , lazy viewExamples model