mirror of
https://github.com/onyx-and-iris/vmr-http.git
synced 2026-04-06 18:09:11 +00:00
implement eq endpoints
attach eq subrouter to strip/bus routers minor bump
This commit is contained in:
15
src/vmr_http/models/eq.py
Normal file
15
src/vmr_http/models/eq.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""Models for the parameters of an equalizer."""
|
||||
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class EQChannelCellParams(BaseModel):
|
||||
"""Parameters for an equalizer channel."""
|
||||
|
||||
on: Optional[bool] = None
|
||||
type: Optional[int] = None
|
||||
f: Optional[float] = None
|
||||
gain: Optional[float] = None
|
||||
q: Optional[float] = None
|
||||
Reference in New Issue
Block a user