dcexpert 发表于 2019-5-19 21:10

【麦昆试用】python编程(3)

<div class='showpostmsg'>寻线传感器


寻线传感器是类似上图的传感器,通常由一个红外发射管和一个接收管组成。它的输出信号是开关量,当接收管收不到反射信号时输出0,否则输出1。实际使用时,通常是用一个较宽的黑线和白底做轨迹,使用2个或多个传感器来判断,让小车沿着黑线运动。

在麦昆上,寻线传感器使用P13和P14作为信号输入。下面代码可以读取寻线传感器的状态。

while 1:
      print(pin13.read_digital(), pin14.read_digital())
      sleep(500)



此内容由EEWORLD论坛网友dcexpert原创,如需转载或用于商业用途需征得作者同意并注明出处




</div><script>                                        var loginstr = '<div class="locked">查看本帖全部内容,请<a href="javascript:;"   style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
                                       
                                        if(parseInt(discuz_uid)==0){
                                                                                                (function($){
                                                        var postHeight = getTextHeight(400);
                                                        $(".showpostmsg").html($(".showpostmsg").html());
                                                        $(".showpostmsg").after(loginstr);
                                                        $(".showpostmsg").css({height:postHeight,overflow:"hidden"});
                                                })(jQuery);
                                        }                </script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script>
页: [1]
查看完整版本: 【麦昆试用】python编程(3)