SimpleWoL – 简单的网络唤醒
Simple Wake on Lan 是一款适用于 Android 和 iOS 的简单跨平台 Flutter 应用程序,用于向设备发送网络唤醒数据包。
用法
网络唤醒 (WoL) 是一种网络协议,允许设备在休眠时通过网络远程开启或唤醒。此项目的目标是使唤醒设备的过程变得简单,通过移动应用程序实现。
截图
![]() |
![]() |
![]() |
![]() |
特点
- 自动设备发现
- 发送网络唤醒数据包的简单界面
- 导出和导入用户数据为
json文件(如下所示)
该应用程序将添加的设备存储在 json 文件中,该文件可以在应用程序 UI 中导出和导入。文件结构的示例如下
[
{
"id": "6b353440-d183-11ed-964b-69a9facd6cfd",
"hostName": "Raspberry Pi",
"ipAddress": "192.168.1.9",
"macAddress": "12:12:12:12:12:12",
"wolPort": 9,
"deviceType": "computer",
"modified": "2023-04-14T14:17:45.974511"
},
{
"id": "87c87ab0-d184-13ed-9d56-a5f550305985",
"hostName": "Printer",
"ipAddress": "192.168.1.10",
"macAddress": "f0:f0:f0:f0:f0:f0",
"wolPort": 9,
"deviceType": "printer",
"modified": "2023-04-14T14:18:14.997081"
}
]
下载
- 您可以从 GitHub Releases 下载最新版本的应用程序
- 从 PlayStore 下载
- 从 App Store 下载
架构
该应用程序使用 Flutter 框架构建。它使用了 Google 的 Material 3 设计系统。
构建
要自己构建该应用程序,您需要安装 Flutter SDK。您可以在 此处 找到安装说明。
许可证
本项目根据 MIT 许可证发布 – 有关详细信息,请参阅 LICENSE 文件
Copyright (c) 2023 Henrik Herzig
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.




