All Projects → RobPo → Paperino

RobPo / Paperino

Licence: BSD-3-Clause license
E-Paper display library for the Particle & Arduino family.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to Paperino

uchroma
An advanced driver for Razer Chroma hardware in Linux
Stars: ✭ 45 (+28.57%)
Mutual labels:  hardware, driver
Serial7segmentdisplay
Example code and board files for the Serial 7 Segment Display.
Stars: ✭ 81 (+131.43%)
Mutual labels:  hardware, display
particle-cookbook
A collection of programming snippets, tips, and tricks for developing with Particle IoT devices
Stars: ✭ 20 (-42.86%)
Mutual labels:  hardware, particle
device-epd
E-Paper Display Device
Stars: ✭ 26 (-25.71%)
Mutual labels:  display, epd
epdtext
A simple display manager app for the WaveShare 2.7in e-Paper Display
Stars: ✭ 18 (-48.57%)
Mutual labels:  e-paper, epd
hwidspoofer
HardwareID Spoofer using kernelmode
Stars: ✭ 68 (+94.29%)
Mutual labels:  driver
quince
a 2.4 GHz SDR neighbor using 1 bit ADC
Stars: ✭ 24 (-31.43%)
Mutual labels:  hardware
ant-arduino
An implementation of a ANT driver for Arduino, Mbed and ESP-IDF
Stars: ✭ 69 (+97.14%)
Mutual labels:  driver
SDR Matlab OFDM 802.11n
📡 Using Software Designed Radio to transmit MIMO-OFDM QPSK signals at 5 GHz
Stars: ✭ 44 (+25.71%)
Mutual labels:  hardware
midi-grid
DIY midi controller project
Stars: ✭ 60 (+71.43%)
Mutual labels:  hardware
Sol
An open-source MIDI-to-CV Eurorack module that runs CircuitPython
Stars: ✭ 56 (+60%)
Mutual labels:  hardware
micropython-tft-gui
Simple GUI for Pyboard and TFT touch panel displays
Stars: ✭ 72 (+105.71%)
Mutual labels:  display
UITableViewCellAnimation
Basic tabeview cell animation for best way to display cell
Stars: ✭ 31 (-11.43%)
Mutual labels:  display
smartcitizen-kit-20
Smart Citizen Kit 2.0 hardware and firmware
Stars: ✭ 36 (+2.86%)
Mutual labels:  hardware
RAK831-Zero
Pi Zero RAK831 Adapter board
Stars: ✭ 98 (+180%)
Mutual labels:  shield
KMAC
Some usefull info when reverse engineering Kernel Mode Anti-Cheat
Stars: ✭ 31 (-11.43%)
Mutual labels:  driver
embedded-sps
Embedded i2c Driver for Sensirion Particulate Matter Sensors - Download the Zip Package from the Release Page
Stars: ✭ 36 (+2.86%)
Mutual labels:  driver
stm32 tiny monitor
A tiny external monitor for PC using STM32 and ST7789. Connects to PC over USB and displays the captured screen on ST7789 (240x240) display.
Stars: ✭ 61 (+74.29%)
Mutual labels:  display
RiscvSpecFormal
The RiscvSpecKami package provides SiFive's RISC-V processor model. Built using Coq, this processor model can be used for simulation, model checking, and semantics analysis. The RISC-V processor model can be output as Verilog and simulated/synthesized using standard Verilog tools.
Stars: ✭ 69 (+97.14%)
Mutual labels:  hardware
laravel-postal
This library integrates Postal with the standard Laravel mail framework.
Stars: ✭ 20 (-42.86%)
Mutual labels:  driver

Paperino PL_microEPD Arduino Library

Welcome to the Paperino docs! This is a Hardware Library for the 1.1” E-Paper display (EPD) from Plastic Logic for Adafruits GFX library.

Paperino E-Paper Shield for Particle, Breakout Board and Driver Module
Paperino E-Paper Shield for Particle, Breakout Board and Driver Module

So, what is Paperino?

Paperino is an easy to use micro EPD breakout-board for the Photon or other Arduino-compatible microcontrollers. The eInk-based ePaper display mimics the appearance of natural paper and is capable of holding text and images indefinitely, even without electricity. This makes Paperino perfect for your next battery-driven, connected project where the display content changes rarely.

Paperino also integrates an easy to use accelerometer. It extends the EPD by tap-sensing functions and offers portrait/landscape detection. Furthermore you can wake-up your MCU after movement-based events from deep-sleeping, saving battery live during waiting phases.

Featured In

As Featured In

Documentation

This is the place to get started with your new hardware! We have divided the documentation into the following sections:

  • Hookup Guide - Step-by-step instructions to get your Paperino setup and run within minutes.
  • Examples - Ready to use examples for your own inspiration.
  • Reference - Datasheets & Application Notes.
  • Hardware - Schematics & PCB layouts.

How To Use

Installation

This library is part of the Particle and Arduino Library Manager. Please search for PL_microEPD within the Manager and download the library, that’s it! Included are six example sketches, they are useful to learn the basics about this ePaper screen.

Hardware hookup

To start communicating with the ePaper driver IC, you’ll need to supply 3.3V and four more wires for SPI communication (@3.3V voltage level). Please have a look at the hook-up guide for more detailed information.

Example: Hello World!

This is the first, and shortest possible demo and shows how to address the ePaper (don’t forget to update the GPIO name if needed in line 3):

#include "Adafruit_GFX.h"
#include "PL_microEPD.h"

#define EPD_CS      A2
PL_microEPD display(EPD_CS);  

void setup() {  
    SPI.begin();                    
    SPI.beginTransaction(SPISettings(4000000, MSBFIRST, SPI_MODE0));
  
    display.begin();                
    display.print("Hello World!");
    display.update();               
}

void loop() {              
}

You should now be able to see the ePaper screen updating. Congratulation! If you feel more like a pro’ this is now the time to add the wiring of two more GPIO lines (called ‘busy’ & ‘reset’). They are needed to run the image updates a bit faster and/or to reset the IC after having it set to deep sleep.

More…

Once this example is successfully running, please have a look at the following sketches: GFX demo shows how to draw all the letters, rectangles and dots. The Graylevel sketch explains how to use the four different graylevels in your next project. Update modes describes three different ways of updating an ePaper screen.

Distributors

Paperino ePaper displays are available at Crowd Supply, Watterott electronic, Mouser and DigiKey.

Projects

These demo projects are for your inspiration! What will you implement with Paperino? Tell us, we’ll love to add your project here!

Project TrafficIndicator at Hackaday.io Project IoT Connected Desk Frame at Hackaday.io Project local rain forecast for fair weather cyclists at Hackster.io
Project Industrial Tap Tap Machine at Hackster.io

Changelog

  • v1.1.01 (03/2018) - Add support for more EPDs: 1.4", 2.1" & 3.1" (auto-detection) and for deepSleep() of driver IC
  • v1.0.20 (10/2017) - Add support for (optional) simplified wiring for MCUs with limited GPIOs
  • v1.0.10 (08/2017) - Particle & Arduino Library Manager supported; tap sensitivity increased; ‘verified’ by Particle
  • v1.0.00 (07/2017) - Initial release

License Information

This library is open source!

Created by Robert Poser, Mar 4th 2018, Dresden/Germany. Released under BSD license (3-clause BSD license), check license.md for more information.

We invested time and resources providing this open source code, please support Paperino and open source hardware @Adafruit and by purchasing this product @Crowdsupply @Watterott @Plasticlogic.

If you like this project please follow us on Twitter. Having problems or have awesome suggestions? Contact us: [email protected].

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].