NoIssue: Add first sendCommand() method

This commit is contained in:
2026-02-08 17:02:04 +01:00
parent 29f6b2613c
commit 09b61b1073
2 changed files with 5 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
package com.r35157.driver.ledsign;
public interface LedSign {
void sendCommand(byte[] payload);
}

View File

@@ -1,6 +0,0 @@
package com.r35157.driver.ledsign;
public interface SomeInterface {
String concat(String x, String y);
void divideByZero() throws ArithmeticException;
}