×

Meadow Rover第1部分:带定向LED的电机控制

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

王飞

分享资料个

描述

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

在这个项目中,我们将了解使用几个 LED、几个电机和一个 SN754410N 芯片来控制它们来构建您的第一个流动站是多么容易。构建此项目所需的一切都包含在Wilderness Labs Meadow F7 w/Hack Kit Pro 中。我们将看到使用 Meadow.Foundation 对这些外围设备进行编程是多么容易。

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

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

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

如下面的 Fritzing 图中所示连接所有组件:

pYYBAGPXO8SABHfgAALLMrxXBb8248.jpg
 

请注意,我们有 4 节 AA 电池连接到面包板上的电源和接地轨。对于 Meadow 来说,电机会消耗过多的功率来处理它,这对于拥有外部电源很重要。

要从外部为 Meadow 供电,您可以使用其电池充电板载威廉希尔官方网站 。连接任何标准的 3.7V LiPo/LiIon 电池,您可以在通过 USB 连接器连接威廉希尔官方网站 板时为其充电。您可以查看为 Meadow F7 供电以了解更多信息。

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

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

第 3 步 - 为 MeadowLedRover 编写代码

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

添加 CarController 类

使用以下代码添加CarController类:

public class CarController
{
    float SPEED = 0.75f;

    HBridgeMotor motorLeft;
    HBridgeMotor motorRight;

    public CarController(HBridgeMotor motorLeft, HBridgeMotor motorRight)
    {
        this.motorLeft = motorLeft;
        this.motorRight = motorRight;
    }

    public void Stop()
    {
        motorLeft.Power = 0f;
        motorRight.Power = 0f;
    }

    public void TurnLeft()
    {
        motorLeft.Power = SPEED;
        motorRight.Power = -SPEED;
    }

    public void TurnRight()
    {
        motorLeft.Power = -SPEED;
        motorRight.Power = SPEED;
    }

    public void MoveForward()
    {
        motorLeft.Power = -SPEED;
        motorRight.Power = -SPEED;
    }

    public void MoveBackward()
    {
        motorLeft.Power = SPEED;
        motorRight.Power = SPEED;
    }
}

这个控制器是一个简单的汽车驱动程序,封装了控制电机的逻辑。不是每次我们想让汽车向任何方向行驶时都改变单个电机的速度,我们可以简单地创建四种方法 ( MoveForward, MoveBackwards, TurnLeft, TurnRight) 和一种停止方法 ( Stop)。

MeadowApp 类

对于主要的MeadowApp类,复制以下代码:

// public class MeadowApp : App <- If you have a Meadow F7v1.*
public class MeadowApp : App
{
    Led up, down, left, right;
    CarController carController;

    public override Task Initialize()
    {
        var led = new RgbLed(
            Device, 
            Device.Pins.OnboardLedRed, 
            Device.Pins.OnboardLedGreen, 
            Device.Pins.OnboardLedBlue);
        led.SetColor(RgbLedColors.Red);

        up = new Led(Device, Device.Pins.D13);
        down = new Led(Device, Device.Pins.D10);
        left = new Led(Device, Device.Pins.D11);
        right = new Led(Device, Device.Pins.D12);
        up.IsOn = down.IsOn = left.IsOn = right.IsOn = false;

        var motorLeft = new HBridgeMotor
        (   
            device: Device,
            a1Pin: Device.Pins.D07,
            a2Pin: Device.Pins.D08,
            enablePin: Device.Pins.D09
        );
        var motorRight = new HBridgeMotor
        (
            device: Device,
            a1Pin: Device.Pins.D02,
            a2Pin: Device.Pins.D03,
            enablePin: Device.Pins.D04
        );

        carController = new CarController(motorLeft, motorRight);

        led.SetColor(RgbLedColors.Green);

        return base.Initialize();
    }

    public override async Task Run()
    {
        while (true)
        {
            up.IsOn = true;
            carController.MoveForward();
            await Task.Delay(1000);
            up.IsOn = false;

            carController.Stop();
            await Task.Delay(500);

            down.IsOn = true;
            carController.MoveBackward();
            await Task.Delay(1000);
            down.IsOn = false;

            carController.Stop();
            await Task.Delay(500);

            left.IsOn = true;
            carController.TurnLeft();
            await Task.Delay(1000);
            left.IsOn = false;

            carController.Stop();
            await Task.Delay(500);

            right.IsOn = true;
            carController.TurnRight();
            await Task.Delay(1000);
            right.IsOn = false;

            carController.Stop();
            await Task.Delay(500);
        }
    }
}

在 MeadowApp 的构造函数中,请注意两个方法:InitializeRun

在该Initialize方法中,您可以看到所有四个 LED 是如何初始化为 Led(我们将使用它来根据汽车行驶的方向打开和关闭它们)、两个 HBridgeMotor 对象(每个电机一个),以及传递给一个新的CarController对象。

在该Run方法中,App进入了一个无限while循环,它会调用CarController的方法在每个方向上移动一秒,中间停半秒。

第 4 步 - 运行项目

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

RoverLed 项目运行...
 

查看 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:'Meadow Rover第1部分:带定向LED的电机控制',//标题 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);