Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package com.ubt.jimu.connect.model;
import com.ubt.jimu.base.data.ServoMode;
import com.ubtrobot.jimu.robotapi.PeripheralType;
/* loaded from: classes.dex */
public class ServoComponent extends Component {
private ServoMode e;
public ServoComponent(int i, ErrorType errorType) {
super(PeripheralType.SERVO, i, errorType);
this.e = ServoMode.SERVO_MODE_ANGLE;
}
public void a(ServoMode servoMode) {
this.e = servoMode;
}
public ServoMode f() {
return this.e;
}
}