摘要:
今天发现ipad在ubuntu上会一直显示Not Charging,搜了一下,发现有人写了一个ipad_charge程序:https://github.com/mkorenkov/ipad_charge/看了一下源码,是通过发一个控制指令实现开始和停止充电的。于是用pyusb(apt-get install python-usb)移植了一下:#!/usr/bin/pythonimport usb.coreimport usb.utilimport usb.backend.libusb10import sys, getoptopts = getopt.getopt(sys.argv[1:], 阅读全文