From 5bdf6268619d1f4365338fe855596fee868cb0e0 Mon Sep 17 00:00:00 2001 From: Andrea Martelloni Date: Mon, 8 Sep 2025 13:25:55 +0100 Subject: [PATCH] Added help screen --- MEMLNaut-PAF-CARL.ino | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/MEMLNaut-PAF-CARL.ino b/MEMLNaut-PAF-CARL.ino index 2bdbf67..5cab153 100644 --- a/MEMLNaut-PAF-CARL.ino +++ b/MEMLNaut-PAF-CARL.ino @@ -117,6 +117,19 @@ void setup() // scr.post("MEMLNaut PAF CARL"); // scr.post("let's go!"); // add_repeating_timer_ms(-39, displayUpdate, NULL, &timerDisplay); + + std::shared_ptr helpView = std::make_shared("Help"); + helpView->post("PAF synth CARL"); + helpView->post("TA: Down: Forget replay memory"); + helpView->post("MA: Up: Randomise actor"); + helpView->post("MA: Down: Randomise critic"); + helpView->post("MB: Up: Positive reward"); + helpView->post("MB: Down: Negative reward"); + helpView->post("Y: Optimisation rate"); + helpView->post("Z: OU noise"); + helpView->post("Joystick: Explore"); + MEMLNaut::Instance()->disp->AddView(helpView); + MEMLNaut::Instance()->addSystemInfoView(); Serial.println("Finished initialising core 0.");