Add control library for distance sensor and display

This commit is contained in:
Johnathon Slightham
2026-03-04 07:55:35 -05:00
parent aad4b7654d
commit 6f63629119
4 changed files with 49 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
using UnityEngine;
using System;
public class DisplayModule : ModuleBase
{
@@ -17,5 +18,6 @@ public class DisplayModule : ModuleBase
// Replace with actual hardware communication logic
Debug.Log($"[DisplayModule] Sending display text: {text}");
// Example: ControlLibrary.send_display_text(Int32.Parse(moduleID), text);
ControlLibrary.send_string_control(Int32.Parse(moduleID), text);
}
}