Fully added gripper, distance, IMU, and display modules

This commit is contained in:
Christen
2026-02-28 21:39:36 -05:00
parent fd5d41f645
commit 6b2270381d
105 changed files with 40782 additions and 1261 deletions

19
Assets/DisplayModule.cs Normal file
View File

@@ -0,0 +1,19 @@
using UnityEngine;
public class DisplayModule : ModuleBase
{
public string displayText = "";
public void SetDisplayText(string text)
{
displayText = text;
SendToDisplayHardware(text);
}
private void SendToDisplayHardware(string text)
{
// Replace with actual hardware communication logic
Debug.Log($"[DisplayModule] Sending display text: {text}");
// Example: ControlLibrary.send_display_text(Int32.Parse(moduleID), text);
}
}