mirror of
https://github.com/meshtastic/web.git
synced 2026-04-24 16:00:32 -04:00
81 lines
2.2 KiB
TypeScript
81 lines
2.2 KiB
TypeScript
import type { AudioValidation } from "@app/validation/moduleConfig/audio.tsx";
|
|
import { DynamicForm } from "@components/Form/DynamicForm.tsx";
|
|
import { useDevice } from "@core/stores/deviceStore.ts";
|
|
import { Protobuf } from "@meshtastic/js";
|
|
|
|
export const Audio = (): JSX.Element => {
|
|
const { moduleConfig, setWorkingModuleConfig } = useDevice();
|
|
|
|
const onSubmit = (data: AudioValidation) => {
|
|
setWorkingModuleConfig(
|
|
new Protobuf.ModuleConfig.ModuleConfig({
|
|
payloadVariant: {
|
|
case: "audio",
|
|
value: data,
|
|
},
|
|
}),
|
|
);
|
|
};
|
|
|
|
return (
|
|
<DynamicForm<AudioValidation>
|
|
onSubmit={onSubmit}
|
|
defaultValues={moduleConfig.audio}
|
|
fieldGroups={[
|
|
{
|
|
label: "Audio Settings",
|
|
description: "Settings for the Audio module",
|
|
fields: [
|
|
{
|
|
type: "toggle",
|
|
name: "codec2Enabled",
|
|
label: "Codec 2 Enabled",
|
|
description: "Enable Codec 2 audio encoding",
|
|
},
|
|
{
|
|
type: "number",
|
|
name: "pttPin",
|
|
label: "PTT Pin",
|
|
description: "GPIO pin to use for PTT",
|
|
},
|
|
{
|
|
type: "select",
|
|
name: "bitrate",
|
|
label: "Bitrate",
|
|
description: "Bitrate to use for audio encoding",
|
|
properties: {
|
|
enumValue:
|
|
Protobuf.ModuleConfig.ModuleConfig_AudioConfig_Audio_Baud,
|
|
},
|
|
},
|
|
{
|
|
type: "number",
|
|
name: "i2sWs",
|
|
label: "i2S WS",
|
|
description: "GPIO pin to use for i2S WS",
|
|
},
|
|
{
|
|
type: "number",
|
|
name: "i2sSd",
|
|
label: "i2S SD",
|
|
description: "GPIO pin to use for i2S SD",
|
|
},
|
|
{
|
|
type: "number",
|
|
name: "i2sDin",
|
|
label: "i2S DIN",
|
|
description: "GPIO pin to use for i2S DIN",
|
|
},
|
|
{
|
|
type: "number",
|
|
name: "i2sSck",
|
|
label: "i2S SCK",
|
|
description: "GPIO pin to use for i2S SCK",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
};
|