From 26897a96a14b2ff426c7be6d9825c9e4365324d5 Mon Sep 17 00:00:00 2001 From: gregor-anich-uibk <63648071+gregor-anich-uibk@users.noreply.github.com> Date: Sat, 8 Aug 2020 14:17:43 +0200 Subject: st7735: Add dump with unknown command [ gsi: README markup nits, and shorter snippet for automated test ] --- display/st7735/README | 25 +++++++++++++++++++++++ display/st7735/st7735_unknown_command.sr | Bin 0 -> 126229 bytes display/st7735/st7735_unknown_command_snippet.sr | Bin 0 -> 47061 bytes 3 files changed, 25 insertions(+) create mode 100644 display/st7735/st7735_unknown_command.sr create mode 100644 display/st7735/st7735_unknown_command_snippet.sr (limited to 'display') diff --git a/display/st7735/README b/display/st7735/README index 0c76111..44755a2 100644 --- a/display/st7735/README +++ b/display/st7735/README @@ -37,3 +37,28 @@ Long pauses are caused be sleeps for a few hundreds of milliseconds, which are required by the spec. Other oddities like frequent changes of CS are caused by specific library implementation. + +Dump with unknown command +------------------------- + +Taken with the same setup as above on a 128x160 display with Arduino TFT library +and the following code: + + #include + #include + + #define cs 10 + #define dc 9 // A0 + #define rst 8 + + TFT TFTscreen = TFT(cs, dc, rst); + + void setup() + { + TFTscreen.begin(); + TFTscreen.background(0, 255, 0); + } + + void loop() + { + } diff --git a/display/st7735/st7735_unknown_command.sr b/display/st7735/st7735_unknown_command.sr new file mode 100644 index 0000000..33f3d5e Binary files /dev/null and b/display/st7735/st7735_unknown_command.sr differ diff --git a/display/st7735/st7735_unknown_command_snippet.sr b/display/st7735/st7735_unknown_command_snippet.sr new file mode 100644 index 0000000..24d8052 Binary files /dev/null and b/display/st7735/st7735_unknown_command_snippet.sr differ -- cgit v1.2.3-54-g00ecf