带有Lego Mindstorm的Raspberry Pi-蓝牙连接错误

时间:2019-05-02 12:22:49

标签: python-3.x raspberry-pi lego mindstorms

我试图通过在Raspberry Pi上运行的Python脚本来控制Lego Mindstorm。

为此,我正在按照此链接上的步骤进行操作:

http://www.geekdroppings.com/2018/01/21/raspberry-pi-and-the-lego-ev3-connected-by-bluetooth/

在指南的某些地方,我们有以下代码段:

<script src="https://www.google.com/recaptcha/api.js" async defer></script>
 <script type="text/javascript"> 
 if (grecaptcha.getResponse() == "success")
  {
     function Redirect()
      {
         window.location.href = "example.com";
         }

           setTimeout(Redirect,1000);
            }
             else alert("You can't proceed!");
              </script>

  <div data-type="image" class="g-recaptcha" data-sitekey="my-sitekey"></div> 

但是,事实证明,当我调试代码时,n始终返回0。

有人可以帮助我解决这个问题吗?

谢谢

0 个答案:

没有答案