×

使用REST使用Meadow和MAUI远程控制伺服

消耗积分:0 | 格式:zip | 大小:0.14 MB | 2023-01-31

分享资料个

描述

项目更新为 V1.0 Release Candidate 1(2022 年 10 月 23 日)

该项目向您展示如何通过使用 Maple 向作为服务器运行的 Meadow 发送 http 请求来使用 MAUI 应用程序控制 MicroServo。

Maple通过 Web API 公开控制,使与 Meadow 建立连接的设备变得容易。Maple是一个开源、超轻量级、支持 JSON 的 RESTful Web 服务器。它还具有广告功能,这意味着您可以通过使用其名称和 IP 地址收听 UDP 广播消息来发现网络中的 Maple 服务器。

Meadow.Foundation是一个平台,用于在 Meadow 上使用 .NET 快速轻松地构建连接的事物。它由Wilderness Labs创建,完全开源并由 Wilderness Labs 社区维护。

如果您是 Meadow 的新手,我建议您通过控制板载 RGB LED 项目转到 Meadow 入门,以正确设置您的开发环境。

第 1 步 - 组装威廉希尔官方网站

如下所示连接您的项目:

 

poYBAGPXOb-AcTGDAAGoHzcnHkk496.png
将伺服 SG90 连接到 Meadow
 

第 2 步 - 创建 Meadow 应用程序项目

在 Visual Studio 2019 for WindowsmacOS中创建一个新的Meadow Application项目并将其命名为MeadowMapleServo

第 3 步 - 添加所需的 NuGet 包

对于这个项目,搜索并安装以下 NuGet 包:

第 4 步 - 为 MeadowMapleServo 编写代码

让我们遍历每个类来构建这个项目:

为每个涉及的外围设备创建一个 Controller 类是一个很好的做法,可以使项目更具可扩展性、可维护性和清洁性。这些 Controller 类抽象了所有外围设备的逻辑,因此主要程序逻辑将保持清晰和易于理解。

伺服控制器类

public class ServoController
{
    private static readonly Lazy instance =
        new Lazy(() => new ServoController());
    public static ServoController Instance => instance.Value;

    Servo servo;

    Task animationTask = null;
    CancellationTokenSource cancellationTokenSource = null;

    protected int _rotationAngle;

    private ServoController() 
    {
        Initialize();
    }

    private void Initialize()
    {
        servo = new Servo(
            device: MeadowApp.Device, 
            pwmPort: MeadowApp.Device.Pins.D10, 
            config: NamedServoConfigs.SG90);
        servo.RotateTo(NamedServoConfigs.SG90.MinimumAngle);
    }

    public void RotateTo(Angle angle)
    {
        servo.RotateTo(angle);
    }

    public void StopSweep()
    {
        cancellationTokenSource?.Cancel();
    }

    public void StartSweep()
    {
        animationTask = new Task(async () =>
        {
            cancellationTokenSource = new CancellationTokenSource();
            await StartSweep(cancellationTokenSource.Token);
        });
        animationTask.Start();
    }
    protected async Task StartSweep(CancellationToken cancellationToken)
    {
        while (true)
        {
            if (cancellationToken.IsCancellationRequested) { break; }

            while (_rotationAngle < 180)
            {
                if (cancellationToken.IsCancellationRequested) { break; }

                _rotationAngle++;
                servo.RotateTo(new Angle(_rotationAngle, Angle.UnitType.Degrees));
                await Task.Delay(50);
            }

            while (_rotationAngle > 0)
            {
                if (cancellationToken.IsCancellationRequested) { break; }

                _rotationAngle--;
                servo.RotateTo(new Angle(_rotationAngle, Angle.UnitType.Degrees));
                await Task.Delay(50);
            }
        }
    }
}

如您所见,此类包含以下方法:

  • Initialize()- 用于设置 MicroServo 并通过将其旋转 0 度将其设置到初始位置。
  • RotateTo(Angle angle)- 使舵机按指定角度旋转。
  • StartSweep()- 使伺服来回旋转到其最大角度范围。
  • StopSweep()- 停止扫描动作。

ServoControllerRequestHandler 类

public class ServoControllerRequestHandler : RequestHandlerBase
{
    public ServoControllerRequestHandler() { }

    [HttpPost("/rotateto")]
    public IActionResult RotateTo()
    {
        int angle = int.Parse(Body);
        ServoController.Instance.RotateTo(new Angle(angle, Angle.UnitType.Degrees));
        return new OkResult();
    }

    [HttpPost("/startsweep")]
    public IActionResult StartSweep()
        {
        ServoController.Instance.StartSweep();
        return new OkResult();
    }

    [HttpPost("/stopsweep")]
    public IActionResult StopSweep()
    {
        ServoController.Instance.StopSweep();
        return new OkResult();
    }
}

此类用于公开所有服务器入口点,以便客户端可以发送 Http POST 请求来控制伺服。请注意,Servo Controller 类中的每个方法都有一个。

秘密课

public class Secrets
{
    ///     /// Name of the WiFi network to use.
    /// summary>
    public const string WIFI_NAME = "[SSID]";

    ///     /// Password for the WiFi network names in WIFI_NAME.
    /// summary>
    public const string WIFI_PASSWORD = "[PASSWORD]";
}

我们需要此类来输入我们的 WiFi 凭据,以便 Meadow 可以加入我们的网络。

MeadowApp 类

// public class MeadowApp : App <- If you have a Meadow F7v1.*
public class MeadowApp : App
{
    MapleServer mapleServer;

    public override async Task Initialize()
    {
        var onboardLed = new RgbPwmLed(device: Device,
            redPwmPin: Device.Pins.OnboardLedRed,
            greenPwmPin: Device.Pins.OnboardLedGreen,
            bluePwmPin: Device.Pins.OnboardLedBlue);
        onboardLed.SetColor(Color.Red);

        ServoController.Instance.RotateTo(new Angle(NamedServoConfigs.SG90.MinimumAngle));

        var wifi = Device.NetworkAdapters.Primary();

        var connectionResult = await wifi.Connect(Secrets.WIFI_NAME, Secrets.WIFI_PASSWORD, TimeSpan.FromSeconds(45));
        if (connectionResult.ConnectionStatus != ConnectionStatus.Success)
        {
            throw new Exception($"Cannot connect to network: {connectionResult.ConnectionStatus}");
        }

        mapleServer = new MapleServer(wifi.IpAddress, 5417, true, logger: Resolver.Log);
        mapleServer.Start();

        onboardLed.SetColor(Color.Green);
    }
}

这个主类中最重要的部分是 Initialize 方法,我们首先初始化我们的ServoController ,我们激活我们的网络适配器加入我们的网络,我们创建一个新的MapleServer对象, Advertise 参数设置为true ,一旦板载 LED 亮起绿色,应用程序最终在 MeadowApp 的构造函数末尾启动了 maple 服务器。

这就是我们在 Meadow 方面需要做的一切。现在让我们快速浏览一下 Xamarin 配套应用。

第 5 步 - 了解 MAUI 应用程序

正如我们所提到的,在这个项目中,我们包含了一个在 iOS、Android 和 Windows 上运行的 MAUI 应用程序。

pYYBAGPXOcKAFH7kAAGa0H4syMk651.png
MobileMaple MAUI 应用程序
 

我们需要了解的基本内容是:

Maple 客户端 NuGet 包

由于我们有一个在 Meadow 板上运行的 Maple Server NuGet 包,我们还有一个 Maple Client 包,您可以将其安装在您的 .NET 应用程序中。

使用 Maple 客户端

在 BaseViewModel 的构造函数中,我们可以看到如何创建一个 MapleClient 对象:

...

client = new MapleClient();
client.Servers.CollectionChanged += ServersCollectionChanged;

...

应用程序在网络中找到 Maple 服务器时,将触发ServersCollectionChanged事件处理程序。

要找到通过网络发布信息的 Maple 服务器,您只需调用:

await client.StartScanningForAdvertisingServers();

一旦找到服务器,它将触发CollectionChanged事件,然后应用程序填充一个 ServerModel 列表,您可以使用选择器选择要向其发送服务器请求的服务器。

向 Maple 服务器发送命令

在此ServoControllerViewModel,要注意的最重要的代码部分是SendServoCommand方法:

async Task SendServoCommand(string command)
{
    if (IsBusy)
        return;
    IsBusy = true;

    try
    {
        bool response = await client.PostAsync(SelectedServer != null ? SelectedServer.IpAddress : IpAddress, ServerPort, command, AngleDegrees.ToString());

        if (response)
        {
            IsCyclingStart = IsCyclingStop = IsRotateTo = false;

            switch (command)
            {
                case "RotateTo": IsRotateTo = true; break;
                case "StartSweep": IsCyclingStart = true; break;
                case "StopSweep": IsCyclingStop = true; break;
            }
        }
        else
        {
            Console.WriteLine("Request failed.");
        }
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }
    finally
    {
        IsBusy = false;
    }
}

您可以看到该方法以字符串形式接收命令,我们使用MapleClient对象的PostAsync方法通过传递 Meadow 的 IP 地址、端口、命令和最后的角度值来发送命令,如果调用RotateTo API ,则旋转舵机.

第 6 步 - 运行项目

单击Visual Studio中的“运行”按钮。它应该类似于以下 GIF:

 

查看 Meadow.Foundation!

就您可以使用 Meadow.Foundation 做的大量令人兴奋的事情而言,这个项目只是冰山一角。

它带有一个庞大的外设驱动程序库,其中包含适用于最常见传感器和外设的驱动程序。

  • 它带有一个庞大的外设驱动程序库,其中包含适用于最常见传感器和外设的驱动程序。
  • 外设驱动程序封装了核心逻辑并公开了一个简单、干净、现代的 API。
  • 该项目得到了不断发展的社区的支持,该社区不断致力于构建酷炫的互联事物,并且总是乐于帮助新来者和讨论新项目。

参考


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'使用REST使用Meadow和MAUI远程控制伺服',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);