Null ID for absent pucks

This commit is contained in:
gac-S_Changer
2025-07-02 14:31:22 +02:00
parent 2863a6a88a
commit 3141f7bcb0

View File

@@ -338,6 +338,9 @@ public class Puck extends DeviceBase {
public String getId() {
//return "XXX000" + index;
if (getDetection()!=Detection.Present){
return null;
}
return id;
}