Zach equipment added

This commit is contained in:
Emmanuel HC
2025-09-24 13:54:54 -05:00
parent 8f7bad74e5
commit 1ee3d27d4b
65 changed files with 2138 additions and 1043 deletions

View File

@@ -68,7 +68,7 @@ Modbus_Point<T>* createModbus_Point(T* server, int category, int address, int va
Serial.printf("Creating Input Register: %s\n", description);
return new Modbus_Ireg<T>(server, address, value, description);
case IR_10X: {
case IR_10x: {
Serial.printf("Creating Scaled Input Register (10x): %s\n", description);
Modbus_Point<T>* point = new Modbus_Ireg<T>(server, address, value, description);
return new Modbus_ScaleDecorator<T>(point);