diff options
author | gregor-anich-uibk <63648071+gregor-anich-uibk@users.noreply.github.com> | 2020-08-08 14:17:43 +0200 |
---|---|---|
committer | Gerhard Sittig <gerhard.sittig@gmx.net> | 2020-08-08 17:31:09 +0200 |
commit | 26897a96a14b2ff426c7be6d9825c9e4365324d5 (patch) | |
tree | d3a102f31fc46086d3d2cf2cf46bcb69695ff34e /display/st7735/README | |
parent | 944df7c1cd39a6b2319a5f20d5ffce74d3727619 (diff) | |
download | sigrok-dumps-26897a96a14b2ff426c7be6d9825c9e4365324d5.tar.gz sigrok-dumps-26897a96a14b2ff426c7be6d9825c9e4365324d5.zip |
st7735: Add dump with unknown command
[ gsi: README markup nits, and shorter snippet for automated test ]
Diffstat (limited to 'display/st7735/README')
-rw-r--r-- | display/st7735/README | 25 |
1 files changed, 25 insertions, 0 deletions
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 <TFT.h> + #include <SPI.h> + + #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() + { + } |