feat: add CommBridge class and enhance EssentialsBridgeableDevice with new constructors

This commit is contained in:
Andrew Welker
2025-08-15 09:48:30 -05:00
parent 9b6c2d80ea
commit e49c69a12f
5 changed files with 319 additions and 154 deletions

View File

@@ -7,6 +7,13 @@ namespace PepperDash.Essentials.Core.Bridges
/// </summary>
public interface IBridgeAdvanced
{
/// <summary>
/// Links the bridge to the API using the provided trilist, join start, join map key, and bridge.
/// </summary>
/// <param name="trilist">The trilist to link to.</param>
/// <param name="joinStart">The starting join number.</param>
/// <param name="joinMapKey">The key for the join map.</param>
/// <param name="bridge">The EISC API bridge.</param>
void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApiAdvanced bridge);
}
}