(hex: string | null)
| 241 | } |
| 242 | |
| 243 | manualTarget(hex: string | null): void { |
| 244 | this.manualHex = hex; |
| 245 | this.current = hex ? { hex, sinceMs: Date.now() } : null; |
| 246 | this.resetSetpoint(); |
| 247 | this.recorder.write("manualTarget", { hex }); |
| 248 | } |
| 249 | |
| 250 | jog(pan: number, tilt: number, zoom: number): void { |
| 251 | if (this.mode === "auto") this.setMode("manual"); |
no test coverage detected