summaryrefslogtreecommitdiff
path: root/shared-bindings/framebufferio/FramebufferDisplay.h
diff options
context:
space:
mode:
authorJeff Epler <jeff@adafruit.com>2020-04-20 07:09:12 -0500
committerGitHub <noreply@github.com>2020-04-20 07:09:12 -0500
commit276241b9626078d2e998300ee3b5ff6f7822aa37 (patch)
treef3f3c87e5acf90e4b171ebf27858e7994f07cb4d /shared-bindings/framebufferio/FramebufferDisplay.h
parent1a71c8c51577cc7014d5db1c05084778c0b977e9 (diff)
parent898c09c35e994402ae0bafb25dba5ba284838a82 (diff)
Merge pull request #2775 from jepler/rgbmatrix
Rename Protomatter to RGBMatrix
Diffstat (limited to 'shared-bindings/framebufferio/FramebufferDisplay.h')
-rw-r--r--shared-bindings/framebufferio/FramebufferDisplay.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared-bindings/framebufferio/FramebufferDisplay.h b/shared-bindings/framebufferio/FramebufferDisplay.h
index b472088d2..c41e041ce 100644
--- a/shared-bindings/framebufferio/FramebufferDisplay.h
+++ b/shared-bindings/framebufferio/FramebufferDisplay.h
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2017, 2018 Scott Shawcroft for Adafruit Industries
+ * Copyright (c) 2020 Jeff Epler 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
@@ -39,10 +40,9 @@ extern const mp_obj_type_t framebufferio_framebufferdisplay_type;
#define NO_BRIGHTNESS_COMMAND 0x100
void common_hal_framebufferio_framebufferdisplay_construct(framebufferio_framebufferdisplay_obj_t* self,
- mp_obj_t framebuffer, uint16_t width, uint16_t height,
- uint16_t rotation, uint16_t color_depth,
- uint8_t bytes_per_cell,
- bool auto_refresh, uint16_t native_frames_per_second);
+ mp_obj_t framebuffer,
+ uint16_t rotation,
+ bool auto_refresh);
bool common_hal_framebufferio_framebufferdisplay_show(framebufferio_framebufferdisplay_obj_t* self,
displayio_group_t* root_group);