×

智能充电器开源分享

消耗积分:0 | 格式:zip | 大小:0.00 MB | 2023-06-19

王健

分享资料个

描述

您可以在 utsource.net 上免费送货购买电子元件

第 1 步:制作 Python 脚本

创建文件夹home/pi/charger

使用 Python 软件制作一个新的 Python 脚本。

该项目不是测量电压或电流,而是使用 ADB 包直接从手机获取信息。Android Debug Bridge (ADB) 是一种多功能命令行工具,可让您与模拟器实例或连接的 Android 设备进行通信。它促进了各种设备操作,例如安装和调试应用程序,并提供了一个 Unix shell 的访问权限,您可以使用该 shell 在模拟器或连接的设备上运行各种命令。当手机达到 100% 充电时,Python 脚本获取此信息并使用 GPIO 17 发送信号并使用继电器关闭电源。

电话必须是“ developer mode”。要将 ADB 与通过 USB 连接的设备一起使用,您必须在设备系统设置中的开发人员选项下启用 USB 调试。

GitHub链接代码:

import sched, time 
import subprocess 
import time 
import RPi.GPIO as GPIO 
import os 
GPIO.setwarnings(False) 
GPIO.setmode(GPIO.BCM) 
GPIO.setup(17,GPIO.OUT) 
GPIO.output(17,False) 
s = sched.scheduler(time.time, time.sleep) 
def do_something(sc):  
   print ("Doing stuff...") 
   os.system("adb shell cat /sys/class/power_supply/battery/capacity > curr_batt.txt")  
   from itertools import islice 
   with open("full_batt.txt",'r') as myfile: 
       head = list(islice(myfile, 3)) 
   from itertools import islice 
   with open("curr_batt.txt",'r') as myfile: 
       headh = list(islice(myfile, 3)) 
   if headh != head: 
       os.system("adb shell cat /sys/class/power_supply/battery/capacity > curr_batt.txt") 
   else: 
      GPIO.output(17,True) 
   sc.enter(1, 1, do_something, (sc,)) 
s.enter(1, 1, do_something, (s,)) 
s.run()

在同一路径home/pi/charger中创建两个文本文件

1) 文件名full_batt.txt

在文件中输入数据:

100

第 2 步:制作启动器脚本

$  cd bbt 
$ nano launcher.sh

输入此脚本:

#!/bin/sh 
# launcher.sh 
# navigate to home directory, then to this directory, then execute python script, then back home 
cd / 
cd home/pi/charger 
sudo python charger.py 
cd / 
100

保存!

第 3 步:使其可执行

使启动器脚本成为可执行文件:

$ chmod 755 launcher.sh 
$ sh launcher.sh

这将运行您的 Python 代码。

第四步:添加日志目录

$ cd 
$ mkdir logs

第 5 步:添加到您的 Crontab

$ sudo crontab -e

这将打开一个 Crontab 窗口:

@reboot sh /home/pi/bbt/launcher.sh >/home/pi/logs/cronlog 2>&1

第 6 步:接线

 
poYBAGOYqJCABMLiAAA-6NhYEJ8966.png
 

现在连接电线,如图所示:

如果您想通过一些高通快充更快地为手机充电,我们可以从外部电源提供电源,这将保持充电速度。现在只需连接您的智能手机,当智能手机电池充满时它会自动关闭电源。


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'智能充电器开源分享',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);