树莓 LUMA-OLED.EXAMPLE使用

树莓 LUMA-OLED.EXAMPLE使用_第1张图片

详细介绍在文件目录下的README.rst中

第一步

  $ sudo usermod -a -G i2c,spi,gpio pi  //好像没什么用
  $ sudo apt install python3-dev python3-pip python3-numpy libfreetype6-dev libjpeg-dev build-essential  //安装依赖包,树莓派中好像已经有了
  $ sudo apt install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libportmidi-dev

安装依赖包,树莓派中好像已经有了

Log out and in again and clone this repository::

  $ git clone https://github.com/rm-hull/luma.examples.git  //在树莓中下载代码包
  $ cd luma.examples 

Finally, install the luma libraries using::

  $ sudo -H pip install -e .  //上述步骤完成后,执行些程序(跳过上面步骤直接执行此好像也可以,会出现下载错误,多次执行(注意 -e . 后面的点)

运行方式:

使用SPI接口

python3 animated_gif.py --interface spi

使用I2C 接口

python3 animated_gif.py --interface i2c


      --interface INTERFACE, -i INTERFACE
                            Interface type. Allowed values are: i2c, noop, spi,


 

你可能感兴趣的:(树莓,LUMA.EXAMPLE)