1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Robert ebf40992bc Revert "Merge branch 'development'"
This reverts commit be217ffc02e793d44a031aace51a92ee15d87b40, reversing
changes made to 524296e4e9891a1c4ccedd5f0dcfcbe54b0c8006.
2023-10-09 07:26:17 +02:00

13 lines
381 B
C#

namespace Artemis.Core.Services;
/// <summary>
/// A service that allows you manage an <see cref="ArtemisDevice" />
/// </summary>
public interface IDeviceService : IArtemisService
{
/// <summary>
/// Identifies the device by making it blink white 5 times
/// </summary>
/// <param name="device"></param>
void IdentifyDevice(ArtemisDevice device);
}