×

Ghost frame:使用Adafruit PyPortal显示Ghost

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

梁宏满

分享资料个

描述

对于我的第一个 PyPortal 项目(和我的第一个 CircuitPlaygound 项目),我想显示来自网站ThisPersonDoesNotExist.com的图像,该网站显示随机 AI 生成的现实生​​活中实际上不存在的人的图像,因此得名“Ghost Frame” . 该站点大约每 2 秒生成一个新的 JPEG 图像。所以我的想法是从站点下载这个 JPEG 文件并在 PyPortal 上显示它。第一个问题:PyPortal 本身不支持 JPEG 图片。它确实支持 BMP 图像,但 JPEG 解压缩对于 CircuitPython 来说计算量很大。JPEG 解压缩在未来可能有本地支持,但在当前版本中没有。

要解决此问题,Lady Ada 自己在 GitHub 上提到的一个想法是将 JPEG 文件转换为 BMP。通过一些研究,我用 PHP 编写了一个 JPEG 到 BMP 转换器。这是一个用不到 10 行 PHP 代码编写的 Web 服务。它不仅将 JPEG 图像转换为 BMP 图像,而且还缩放 BMP 图像以适应 PyPortal 的 320 x 240 像素屏幕尺寸。您将需要一个运行 PHP 的网站(或者您的好朋友拥有一个)才能运行此 Web 服务。

下一个障碍是将转换后的 JPEG 图像下载到 PyPortal 进行显示。这需要在显示之前将图像文件临时存储在 PyPortal 上,因为图像太大而无法放入内存。我首先想到在 PyPortal 的 SD 卡插槽中使用 SD 卡并将图像存储在那里。每次下载新图像时,都会一遍又一遍地写入相同的图像文件。此选项有效,但您需要一张 SD 卡才能与 PyPortal 一起使用。我还想尝试将图像文件直接下载到 CircuitPython 的 8MB 文件系统。这有点棘手,因为插入 CircuitPython 设备的主机也可以使用文件系统,并且让两个不同的处理器写入同一文件系统是一场等待发生的灾难。

需要的是一个 boot.py 文件,它告诉 PyPortal 文件系统是只读的还是读写的。此检查在 PyPortal 启动时完成。该模式由 D4 连接器上的母/母跳线切换。连接跳线,CircuitPython 可读写。去掉跳线,对主机操作系统是可读写的。所以你需要操作系统有写权限才能安装和修改code.py中的Ghost Frame代码。完成该工作后,您可以插入电线以允许 PyPortal 将图像直接下载到 CircuitPython 文件系统。一个额外的好处是您可以直接从主机上查看最新的图像。

“鬼框”不仅限于人。ThisCatDoesNotExist.com网站显示了 AI 生成的猫图像。如果你想让人鬼或猫鬼出现在框架中,你可以在代码中选择。

“Ghost Frame”的代码是开源的,可以在 GitHub 上找到。对于未来的发展,最好利用触摸屏并能够在屏幕上选择显示人或猫。

你的“幽灵相框”中会出现哪些幽灵?

我的博客站点上提供了该项目的其他详细信息

 


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

评论(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:'Ghost frame:使用Adafruit PyPortal显示Ghost',//标题 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);