问题标签 [power-off]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 以编程方式访问电源按钮android?
有没有办法以编程方式访问 android 甚至 IOS 中的电源按钮。
android - How to react to android power button properly
I want to make a walkie-talkie app using the power button as Push-to-talk. Therefore i need to replace the button's behavoir to Using onKeyDown onKeyUp or OnKeyLongPressed() trigger events works to receive, but after thre trigger event is processed, screen goes off.
What i have found searching Overriding the power button in Android How to hook into the Power button in Android? doesn't help me since i can't get the Cyanogenmod to work on this phone.
Maybe you have some Idea.
Thank you in advance.
android - 如何检测安卓手机正在关机?
我想在用户关闭安卓手机的瞬间做点什么。我的应用程序如何以编程方式检测到它?
c - 突然断电运行的可执行文件变成空文件
我有两个可执行文件,其来源如下:
main_a.c
main_b.c
gcc -o main_a main_a.c gcc -o main_b main_b.c
然后我把main_a和main_b放在~和~/test中。
我在 ~/test 中 cd,像这样在后台运行 main_b
./main_b 1>/dev/null &
并在前台运行 main_a 链接
./main_a; 睡眠 100
稍等一下,拔掉电源,然后重新启动,我得到两个大小为零且 ~/test 中没有内容的文件。
有人知道为什么吗?
PS:为确保文件已被替换,我在两个小时前触摸~/test/main_a 和~/test/main_b 观看,然后拔掉电源。
touch -d "2 小时前" ~/test/*
android - Android:设备开机时触发所有错过的警报
在我的应用程序中,用户设置了一些提醒,我必须在时间到时提醒他们。目前我正在AlarmManager.RTC
使用AlarmManager
它按照指示工作
// 设置闹钟 - 请注意,如果手机关机,此闹钟将丢失
// 关机再开机
当我打开设备时,有什么办法可以触发错过的警报?
请注意,我不想唤醒设备,我只是想在他们打开设备时提醒他们。
PS:我已经阅读了文档http://developer.android.com/reference/android/app/AlarmManager.html#RTC,但我没有找到我的选择。
linux - Android Linux 内核关机顺序
我正在使用 Android 的 Linux 内核,但遇到了问题。我正在尝试制作我的 Android 手机内核关机代码序列的流程图。
如果我按下手机上的电源按钮并选择“关机”以关闭我的设备。我想知道系统内部发生了什么。哪个内核模块将是断电序列的初始模块?在整个关机过程中,哪些内核模块调用了哪些系统调用?
我得到了我的设备的日志文件如下..
我想知道“arch\arm\mach-msm”中的restart.c是否是我按下“关机”软按钮后初始化关机序列的第一个模块?
我是Linux的新手。我将非常感谢您的帮助!
linux - 如何在不杀死将执行它的正在运行的脚本的情况下拒绝关机?
我有一个备份脚本,它执行 poweroff 命令以在所有备份完成后关闭我的机器。但是碰巧我想拒绝关机,但不杀死脚本进程,因为它会破坏我的备份并留下一团糟。
如何在不暂停或终止脚本的情况下使关机不执行?
这是我的脚本:
android - AlarmManager.RTC_WAKEUP 在关闭时不会唤醒我的安卓设备
我使用下面的代码在我的 android 应用程序中安排警报。
我每天都安排了闹钟。但是,如果在闹钟时间之前的某个时间关闭我的手机,那么我的手机不会在预定时间醒来。
甚至我尝试使用 WakefulBroadcastReceiver 并获得了 WakeLock。但没有任何帮助。
请帮助我。
service - 无法安装关机服务
实际上,我尝试安装一个名为 poweroff 的服务。此服务通常会从一个也称为 poweroff 的软件安装。
您可以在旧项目下找到它:
http://users.telenet.be/jbosman/applications.html
到现在为止,我想在每台电脑上安装服务,我使用包含内容的 .cmd 文件
poweroff.exe shutdown -create_service -msg "这台计算机将被关闭!" -warn -warntime 10 -wait 10 -force -allow_remote -remote_port 3210 -remote_pswd 密码
它创建了服务,所以我可以在 services.msc 程序中看到它。
但是现在在一台电脑上这个命令什么都不做,当我尝试在关机程序中创建服务时,会出现一条消息“访问被拒绝”。
因为我以管理员身份登录,所以我认为这不是一个正确的问题。有谁知道为什么服务不会创建?
arduino - Power on a Raspberry Pi with Arduino
I am working on a project which involves to power on/off a Raspberry Pi with an Arduino. In fact the project contains several sensors like a motion sensor and the Arduino will be supplied with a 10kmA battery.
The motion sensor is connected on the Arduino device.
Once the sensor detects a movement, the Arduino will receive the instruction to deliver the 5V to the Raspberry Pi.
How can I supply the Raspberry Pi with the Arduino? GPIO? USB?
I have already seen solutions to power an Arduino with a Raspberry Pi, but never the opposite.