X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-dumps.git;a=blobdiff_plain;f=display%2Fst7735%2FREADME;fp=display%2Fst7735%2FREADME;h=44755a243ccbd9b7b5cbec5e2e1297acb2b7ca79;hp=0c761110e6c725e6c5f5f01bbfdb56979d5202f7;hb=26897a96a14b2ff426c7be6d9825c9e4365324d5;hpb=944df7c1cd39a6b2319a5f20d5ffce74d3727619 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() + { + }