NoIssue: Add first sendCommand() method

This commit is contained in:
2026-02-08 17:09:32 +01:00
parent 91120a350d
commit 9461284b36
3 changed files with 11 additions and 14 deletions

View File

@@ -34,7 +34,7 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
compileOnly("org.jetbrains:annotations:26.0.2-1")
implementation("com.r35157.driver:ledsign-api:0.0.0")
implementation("com.r35157.driver:ledsign-api:0.1-dev")
}
java {

View File

@@ -0,0 +1,10 @@
package com.r35157.driver.ledsign.impl.sigmaasc434;
import com.r35157.driver.ledsign.LedSign;
import org.jetbrains.annotations.NotNull;
public class SigmaAsc434 implements LedSign {
@Override
public void sendCommand(@NotNull byte[] bytes) {
}
}

View File

@@ -1,13 +0,0 @@
package com.r35157.driver.ledsign.impl.sigmaasc434;
import com.r35157.driver.ledsign.SomeInterface;
public class SomeImpl implements SomeInterface {
public String concat(String x, String y) {
return x + y;
}
public void divideByZero() throws ArithmeticException {
int a = 0/0;
}
}