Implementatie van de opdracht Round Robin

Dependencies:   C12832

Revision:
0:825bd2920b6d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Nov 03 15:37:34 2020 +0000
@@ -0,0 +1,13 @@
+/* mbed Microcontroller Library
+ * Copyright (c) 2019 ARM Limited
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+#include "mbed.h"
+#include "StateMachine.h"
+
+int main()
+{
+    StateMachine statemachine;
+    statemachine.start();
+}