2019-08-02 19:17:38 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 Scott Shawcroft for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MICROPY_INCLUDED_SHARED_MODULE_DISPLAYIO_EPAPERDISPLAY_H
|
|
|
|
#define MICROPY_INCLUDED_SHARED_MODULE_DISPLAYIO_EPAPERDISPLAY_H
|
|
|
|
|
|
|
|
#include "shared-bindings/digitalio/DigitalInOut.h"
|
|
|
|
#include "shared-bindings/displayio/Group.h"
|
|
|
|
|
|
|
|
#include "shared-module/displayio/area.h"
|
2019-08-16 21:34:00 -04:00
|
|
|
#include "shared-module/displayio/display_core.h"
|
2019-08-02 19:17:38 -04:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mp_obj_base_t base;
|
2019-08-16 21:34:00 -04:00
|
|
|
displayio_display_core_t core;
|
2019-08-02 19:17:38 -04:00
|
|
|
digitalio_digitalinout_obj_t busy;
|
|
|
|
uint32_t milliseconds_per_frame;
|
|
|
|
uint8_t* start_sequence;
|
|
|
|
uint32_t start_sequence_len;
|
|
|
|
uint8_t* stop_sequence;
|
|
|
|
uint32_t stop_sequence_len;
|
2019-08-21 16:15:35 -04:00
|
|
|
uint16_t refresh_time;
|
2019-08-02 19:17:38 -04:00
|
|
|
uint16_t set_column_window_command;
|
|
|
|
uint16_t set_row_window_command;
|
|
|
|
uint16_t set_current_column_command;
|
|
|
|
uint16_t set_current_row_command;
|
|
|
|
uint16_t write_black_ram_command;
|
|
|
|
uint16_t write_color_ram_command;
|
|
|
|
uint8_t refresh_display_command;
|
|
|
|
uint8_t hue;
|
|
|
|
bool busy_state;
|
|
|
|
bool black_bits_inverted;
|
|
|
|
bool color_bits_inverted;
|
|
|
|
bool refreshing;
|
2019-08-26 19:37:59 -04:00
|
|
|
display_chip_select_behavior_t chip_select;
|
2019-08-02 19:17:38 -04:00
|
|
|
} displayio_epaperdisplay_obj_t;
|
|
|
|
|
2019-08-14 17:17:35 -04:00
|
|
|
void displayio_epaperdisplay_background(displayio_epaperdisplay_obj_t* self);
|
2019-08-02 19:17:38 -04:00
|
|
|
void release_epaperdisplay(displayio_epaperdisplay_obj_t* self);
|
2019-08-21 00:35:42 -04:00
|
|
|
bool maybe_refresh_epaperdisplay(void);
|
2019-08-02 19:17:38 -04:00
|
|
|
|
2019-08-16 21:34:00 -04:00
|
|
|
void displayio_epaperdisplay_collect_ptrs(displayio_epaperdisplay_obj_t* self);
|
|
|
|
|
2019-08-02 19:17:38 -04:00
|
|
|
#endif // MICROPY_INCLUDED_SHARED_MODULE_DISPLAYIO_EPAPERDISPLAY_H
|