Dragino云盾ip地址
Dragion yun shield ip address
我刚得到一个 dragino 的 arduino yun shield。
我按照 wiki 的说明将 Arduino uno 插入我的计算机 USB,并从 5v > vin 为其供电。
过了一会儿,wifi网络出现了,我就进去了。
前往 http://192.168.240.1/ 我找到网站/设置面板并添加密码并连接到我自己的 wifi 网络。
现在我不知道如何返回该网站,使用什么 IP 地址,甚至不知道如何重置这些设置以创建自己的 wifi 网络。
我可以通过 Arduino 程序连接到 Arduino yun,但是我在尝试做一个闪烁的灯后出现了这个错误。它没有向我显示它的 IP。
我也试过将它连接到墙上插座,但它没有创建网络。
有没有办法完全重置板子?
似乎屏蔽设置为连接到您的 WiFi,而 WiFi 又设置为从您的 WiFi 路由器获取 IP 地址。如果你想找出 WiFi 路由器分配给屏蔽的 IP 地址,那么你可以通过两种方式进行:
- 登录到您的 WiFi 路由器并查看它是否包含 DHCP 客户端
列表。如果屏蔽从该路由器分配了一个 IP,那么它也会在该列表中。
- 使用 SoftPerfect Network Scanner (https://www.softperfect.com/products/networkscanner/) 等软件扫描您网络上的所有主机。然后您可以看到哪些 IP 分配给了主机。其中之一很可能是盾牌。
根据shield的用户手册,您可以重置为出厂设置:
5.7 How to reset the Yun Shield? Yun Shield has a toggle button which can be used for reset. When the system of Yun Shield is
running, user can press the toggle button to reset the device. If
pressing the toggle button and release after 5 seconds , it will
reset the WiFi setting and other settings will be kept. If
pressing the toggle button and release after 30 second s , it will
reset ALL the setting to factory default.
有很多选择。
如果您没有更改 Yun 的名称,它可能具有默认主机名:arduino.local
,因此,如果设备已正确连接,您应该可以在浏览器中访问它http://arduino.local
这应该适用于 OSX。在 Windows 上,您将需要为此使用 Bonjour 服务(对于 Windows,它应该与 iTunes 一起提供)。在 Linux 上你可以使用 avahi
.
另一种选择是使用 Arduino 草图和 USB 数据线询问你的 Yun 它的 IP 地址是什么。您可以在 Arduino > File > Examples > Bridge 中找到一些方便的示例
我建议查看像这样的草图:
- WiFi状态
- 云串口
- Shell 命令
其中任何一个都可以让您在串行监视器中看到有用的信息。
例如,如果您通过串行监视器发送 ifconfig
命令。
此外,正如 Blurry Sterk 已经提到的,您有 WiFi 重置按钮,可以将 Wifi 设置重置为默认设置。顺便说一下,在默认设置下,WiFi 接入点网络名称是
Arduino Yun-XXXXXXXXXXXX", where the twelve 'X' are the MAC address of your Yún
(根据Arduino docs).
写下来(或至少前 3 部分)。您可以使用 arp
命令查看网络上的设备以及 mac 地址。
在 Windows:
arp -a
在 OSX 上:
arp -a -x -l
您可以在列表中找到 Yun 的 mac 地址,以及那里的 IP。
我刚得到一个 dragino 的 arduino yun shield。
我按照 wiki 的说明将 Arduino uno 插入我的计算机 USB,并从 5v > vin 为其供电。
过了一会儿,wifi网络出现了,我就进去了。 前往 http://192.168.240.1/ 我找到网站/设置面板并添加密码并连接到我自己的 wifi 网络。
现在我不知道如何返回该网站,使用什么 IP 地址,甚至不知道如何重置这些设置以创建自己的 wifi 网络。
我可以通过 Arduino 程序连接到 Arduino yun,但是我在尝试做一个闪烁的灯后出现了这个错误。它没有向我显示它的 IP。
我也试过将它连接到墙上插座,但它没有创建网络。
有没有办法完全重置板子?
似乎屏蔽设置为连接到您的 WiFi,而 WiFi 又设置为从您的 WiFi 路由器获取 IP 地址。如果你想找出 WiFi 路由器分配给屏蔽的 IP 地址,那么你可以通过两种方式进行:
- 登录到您的 WiFi 路由器并查看它是否包含 DHCP 客户端 列表。如果屏蔽从该路由器分配了一个 IP,那么它也会在该列表中。
- 使用 SoftPerfect Network Scanner (https://www.softperfect.com/products/networkscanner/) 等软件扫描您网络上的所有主机。然后您可以看到哪些 IP 分配给了主机。其中之一很可能是盾牌。
根据shield的用户手册,您可以重置为出厂设置:
5.7 How to reset the Yun Shield? Yun Shield has a toggle button which can be used for reset. When the system of Yun Shield is running, user can press the toggle button to reset the device. If pressing the toggle button and release after 5 seconds , it will reset the WiFi setting and other settings will be kept. If pressing the toggle button and release after 30 second s , it will reset ALL the setting to factory default.
有很多选择。
如果您没有更改 Yun 的名称,它可能具有默认主机名:arduino.local
,因此,如果设备已正确连接,您应该可以在浏览器中访问它http://arduino.local
这应该适用于 OSX。在 Windows 上,您将需要为此使用 Bonjour 服务(对于 Windows,它应该与 iTunes 一起提供)。在 Linux 上你可以使用 avahi
.
另一种选择是使用 Arduino 草图和 USB 数据线询问你的 Yun 它的 IP 地址是什么。您可以在 Arduino > File > Examples > Bridge 中找到一些方便的示例 我建议查看像这样的草图:
- WiFi状态
- 云串口
- Shell 命令
其中任何一个都可以让您在串行监视器中看到有用的信息。
例如,如果您通过串行监视器发送 ifconfig
命令。
此外,正如 Blurry Sterk 已经提到的,您有 WiFi 重置按钮,可以将 Wifi 设置重置为默认设置。顺便说一下,在默认设置下,WiFi 接入点网络名称是
Arduino Yun-XXXXXXXXXXXX", where the twelve 'X' are the MAC address of your Yún
(根据Arduino docs).
写下来(或至少前 3 部分)。您可以使用 arp
命令查看网络上的设备以及 mac 地址。
在 Windows:
arp -a
在 OSX 上:
arp -a -x -l
您可以在列表中找到 Yun 的 mac 地址,以及那里的 IP。