From 71b1d090c44a8e07a8ceb2e3820b55bae8471c4b Mon Sep 17 00:00:00 2001 From: Bodmer Date: Mon, 5 Apr 2021 01:34:06 +0100 Subject: [PATCH 1/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index df3c5fc..2c3de1c 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ A new ["Discussions"](https://github.com/Bodmer/TFT_eSPI/discussions) facility h # News 1. The library now supports the Raspberry Pi Pico with the [Arduino core provided by Earle Philhower](https://github.com/earlephilhower/arduino-pico). The setup file "Setup60_RP2040_ILI9341.h" has been used for tests with and ILI9341 display. At the moment only SPI interface displays have been tested. +![Pico rotating cube demo](https://i.imgur.com/B9BBJMd.mp4) + 2. Viewports can now be applied to sprites e.g. spr.setViewport(5, 5, 20, 20); so graphics can be restricted to a particular area of the sprite. This operates in the same way as the TFT viewports, see 2. below. 3. The library now provides a "viewport" capability. See "Viewport_Demo" and "Viewport_graphicstest" examples. When a viewport is defined graphics will only appear within that window. The coordinate datum by default moves to the top left corner of the viewport, but can optionally remain at top left corner of TFT. The GUIslice library will make use of this feature to speed up the rendering of GUI objects ([see #769](https://github.com/Bodmer/TFT_eSPI/issues/769)). From c06c10edb918729aff8c989913a6a739b9374bbf Mon Sep 17 00:00:00 2001 From: Bodmer Date: Mon, 5 Apr 2021 01:34:55 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c3de1c..763d04b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A new ["Discussions"](https://github.com/Bodmer/TFT_eSPI/discussions) facility h # News 1. The library now supports the Raspberry Pi Pico with the [Arduino core provided by Earle Philhower](https://github.com/earlephilhower/arduino-pico). The setup file "Setup60_RP2040_ILI9341.h" has been used for tests with and ILI9341 display. At the moment only SPI interface displays have been tested. -![Pico rotating cube demo](https://i.imgur.com/B9BBJMd.mp4) +![Pico rotating cube demo](https://imgur.com/B9BBJMd) 2. Viewports can now be applied to sprites e.g. spr.setViewport(5, 5, 20, 20); so graphics can be restricted to a particular area of the sprite. This operates in the same way as the TFT viewports, see 2. below. From 6c29d8e29b336adf70233c3b955e04fcf438c5c7 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Mon, 5 Apr 2021 01:35:25 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 763d04b..df3c5fc 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ A new ["Discussions"](https://github.com/Bodmer/TFT_eSPI/discussions) facility h # News 1. The library now supports the Raspberry Pi Pico with the [Arduino core provided by Earle Philhower](https://github.com/earlephilhower/arduino-pico). The setup file "Setup60_RP2040_ILI9341.h" has been used for tests with and ILI9341 display. At the moment only SPI interface displays have been tested. -![Pico rotating cube demo](https://imgur.com/B9BBJMd) - 2. Viewports can now be applied to sprites e.g. spr.setViewport(5, 5, 20, 20); so graphics can be restricted to a particular area of the sprite. This operates in the same way as the TFT viewports, see 2. below. 3. The library now provides a "viewport" capability. See "Viewport_Demo" and "Viewport_graphicstest" examples. When a viewport is defined graphics will only appear within that window. The coordinate datum by default moves to the top left corner of the viewport, but can optionally remain at top left corner of TFT. The GUIslice library will make use of this feature to speed up the rendering of GUI objects ([see #769](https://github.com/Bodmer/TFT_eSPI/issues/769)). From d9c7d4a923dc9d0d0c6b4af662436d8bedd7b207 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Mon, 5 Apr 2021 01:39:13 +0100 Subject: [PATCH 4/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index df3c5fc..a06d34b 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ A new ["Discussions"](https://github.com/Bodmer/TFT_eSPI/discussions) facility h # News 1. The library now supports the Raspberry Pi Pico with the [Arduino core provided by Earle Philhower](https://github.com/earlephilhower/arduino-pico). The setup file "Setup60_RP2040_ILI9341.h" has been used for tests with and ILI9341 display. At the moment only SPI interface displays have been tested. + ["Rotating cube demo"](https://www.youtube.com/watch?v=4fPxEN9ImVE) + 2. Viewports can now be applied to sprites e.g. spr.setViewport(5, 5, 20, 20); so graphics can be restricted to a particular area of the sprite. This operates in the same way as the TFT viewports, see 2. below. 3. The library now provides a "viewport" capability. See "Viewport_Demo" and "Viewport_graphicstest" examples. When a viewport is defined graphics will only appear within that window. The coordinate datum by default moves to the top left corner of the viewport, but can optionally remain at top left corner of TFT. The GUIslice library will make use of this feature to speed up the rendering of GUI objects ([see #769](https://github.com/Bodmer/TFT_eSPI/issues/769)).