mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
fix: add IMeterFeedback interface
This commit is contained in:
parent
5ff587a8c9
commit
056614cba1
2 changed files with 27 additions and 0 deletions
9
.vscode/extensions.json
vendored
Normal file
9
.vscode/extensions.json
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"ms-dotnettools.vscode-dotnet-runtime",
|
||||||
|
"ms-dotnettools.csharp",
|
||||||
|
"ms-dotnettools.csdevkit",
|
||||||
|
"vivaxy.vscode-conventional-commits",
|
||||||
|
"mhutchie.git-graph"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Interface for devices that provide audio meter feedback.
|
||||||
|
/// This interface is used to standardize access to meter feedback across different devices.
|
||||||
|
/// </summary>
|
||||||
|
public interface IMeterFeedback
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the meter feedback for the device.
|
||||||
|
/// This property provides an IntFeedback that represents the current audio level or meter value.
|
||||||
|
/// </summary>
|
||||||
|
IntFeedback MeterFeedback { get; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue