×

问题打印机开源分享

消耗积分:0 | 格式:zip | 大小:2.40 MB | 2022-12-20

陈杰

分享资料个

描述

您热爱数字世界,但仍然觉得便利贴和纸是更有效的工具?

这台连接互联网的打印机将帮助您跟踪在 Github 存储库中打开的任何问题。 把问题堆在你的办公桌上,尽情享受把你关闭的所有问题都扔掉的乐趣吧!

了解 Github API

Github 提供了一组漂亮的开放 API,您可以在您的项目中使用。

只需使用您的浏览器即可测试所有 API;例如,如果你想收集有关你的 Github 帐户的信息,只需键入:

https://api.github.com/users/{username}

如果您想访问 Github 组织的信息,您可以使用:

https://api.github.com/orgs/arduino

要收集组织的所有存储库,只需使用:

https://api.github.com/orgs/arduino/repos

 

在本教程中,我们想要获取特定存储库或组织中发生的所有事件的列表,并过滤与新问题相关的事件。

这将是我们的起点:

https://api.github.com/orgs/{organization}/events

与 Arduino 一起休息

与许多其他 Rest API 一样,Github API 只能使用安全的 HTTPS 连接进行访问。  

感谢上帝,MKR1000WiFi Shield 101支持 SSL 连接,WiFi101 库包含一个名为 WiFiSSLClient 的好对象。 

您可以将以下代码上传到开发板上以测试此功能。 

它将连接到您的 WiFi 网络,连接到 api.github.com 并使用该client.print() 函数向服务器执行 GET 请求。

#include 
#include 

char ssid[] = "xxx"; //  your network SSID (name)
char pass[] = "yyy";    // your network password (use for WPA, or use as key for WEP)

int status = WL_IDLE_STATUS;

const char* host = "api.github.com";  //this address is given by Github itself
const int httpsPort = 443;

WiFiSSLClient client;
void setup() {
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for native USB port only
  }

  // attempt to connect to Wifi network:
  while (status != WL_CONNECTED) {
    Serial.print("Attempting to connect to SSID: ");
    Serial.println(ssid);
    status = WiFi.begin(ssid, pass);
    // wait 10 seconds for connection:
    delay(2000);
  }
  Serial.println("Connected to wifi");
}
void loop() {
  if (client.connect(host, httpsPort)) {    //Connect to github
    String url = "/orgs/arduino/events?page=1&per_page=1";  //   /orgs/myRepository/events
    Serial.print("requesting URL: ");                           //  " ?page=1&per_page=1 " add this to get events
    Serial.println(url);                                        //    one by one avoiding the filling of SRAM memory
    client.print(String("GET ") + url + " HTTP/1.1\r\n" +       //send an HTTP request
                 "Host: " + host + "\r\n" +
                 "User-Agent: MKR1000\r\n\r\n");
    // "Connection: close\r\n\r\n");
    Serial.println("request sent");
  }
  delay(5000);
  String line = "";
  while (client.connected()) {
    line = client.readStringUntil('\n');
    if (line == "\r") {
      Serial.println("headers received");
      break;
    }
  }
  line = client.readStringUntil('\n');
  Serial.println(line);
}

 

要从服务器读取响应,您可以使用该client.readStringUntil() 函数。 

使用此代码,我们将读取响应并将标头从消息的内容中分离出来。

  while (client.connected()) {
    line = client.readStringUntil('\n');
    if (line == "\r") {
      Serial.println("headers received");
      break;
    }
  }
  line = client.readStringUntil('\n');
  Serial.println(line);
}

 

上传草图后,如果您打开终端,您应该会看到服务器的响应被打印出来。 

Arduino JSON

如您所见,服务器的响应是 JSON 格式的。

虽然可以解析响应字符串以查找消息中的特定子字符串,但由于安装在 ZERO 和 MKR1000 上的 SAMD21 有足够的内存,我们将使用 Arduino JSON 库来解析消息并提取我们需要的信息

您可以从库管理器轻松下载Arduino JSON 库

打印机 

打印机需要一个库才能工作。 您也 可以从库管理器安装 Adafruit 热敏打印机库。

连接

poYBAGOhCvOAK4E5AAEhXycabvQ035.png
布线布局
 

这台打印机的不同型号可能看起来与这台不同。特别是关于从它出来的电线的颜色。 

考虑到您只需要识别 3 根电线:

  • VCC:通常为红色 
  • GND:通常为黑色
  • RX:如果您是在 Arduino 商店购买的,这应该是蓝线。 

为了给打印机供电,您需要一个外部电源,USB 电源是不够的。我们建议使用 5V(最小 2A)电源来提供所需的电流。

 

 


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

评论(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);