using Microsoft.AspNetCore.Mvc;
using Service.Led;
namespace WebStarter.Controllers;
///
/// led测试工具
///
[ApiController]
[Route("api/[controller]")]
public class LedController
{
///
/// 发送led提示
///
/// houtui,qianjin,xiangzuo
///
[HttpGet("SendBy/{key}")]
public bool SendByKey(string key)
{
return LedClient.SendMsgByKey(key);
}
}