| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103 |
- /*
- u8x8_d_st75256.c
- Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
- Copyright (c) 2017, olikraus@gmail.com
- All rights reserved.
- Redistribution and use in source and binary forms, with or without modification,
- are permitted provided that the following conditions are met:
- * Redistributions of source code must retain the above copyright notice, this list
- of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright notice, this
- list of conditions and the following disclaimer in the documentation and/or other
- materials provided with the distribution.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
- CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 0x030 ext 00
- 0x031 ext 01
- 0x038 ext 10
- 0x039 ext 11
-
- cad 011
-
-
- code examples:
- http://www.it610.com/article/2601023.htm
-
- normal mode:
- 0x00c bit format
- U8X8_CA( 0xbc, 0x00 ), data scan dir
- U8X8_A( 0xa6 ),
- y: 0 offset
-
- flip mode:
- 0x008 bit format
- U8X8_CA( 0xbc, 0x03 ), data scan dir
- U8X8_A( 0xa6 ),
- y: 5 offset
-
-
- */
- #include "u8x8.h"
- /* not a real power down for the st75256... just a display off */
- static const uint8_t u8x8_d_st75256_256x128_powersave0_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x94 ), /* sleep out */
- U8X8_DLY(10),
- U8X8_C( 0xaf ), /* display on */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_st75256_256x128_powersave1_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xae ), /* display off */
- U8X8_C( 0x95 ), /* sleep in */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_st75256_jlx256128_flip0_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x00 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_st75256_jlx256128_flip1_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x03 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x008 ), /* data format MSB top */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_st75256_jlx172104_flip0_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x02 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_st75256_jlx172104_flip1_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x01 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x008 ), /* data format MSB top */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_st75256_jlx256160_flip0_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x00 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_st75256_jlx256160_flip1_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x03 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x008 ), /* data format MSB top */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static uint8_t u8x8_d_st75256_256x128_generic(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- /* handled by the calling function
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_256x128_display_info);
- break;
- */
- /* handled by the calling function
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_init_seq);
- break;
- */
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- break;
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- break;
- #endif
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
- u8x8_cad_SendArg(u8x8, u8x8->x_offset + (((u8x8_tile_t *)arg_ptr)->y_pos)); /* x offset is used as y offset */
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- /* SendData can not handle more than 255 bytes, treat c > 31 correctly */
- if ( c > 31 )
- {
- u8x8_cad_SendData(u8x8, 248, ptr); /* 31*8=248 */
- ptr+=248;
- c -= 31;
- }
-
- u8x8_cad_SendData(u8x8, c*8, ptr);
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- break;
- default:
- return 0;
- }
- return 1;
- }
- /*=============================================*/
- /* JLX256128 */
- static const u8x8_display_info_t u8x8_st75256_256x128_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 32,
- /* tile_height = */ 16,
- /* default_x_offset = */ 0, /* must be 0, because this is checked also for normal mode */
- /* flipmode_x_offset = */ 5, /* used as y offset */
- /* pixel_width = */ 256,
- /* pixel_height = */ 128
- };
- static const uint8_t u8x8_d_st75256_256x128_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x000 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x4f), /* row range */
- U8X8_CAA(0x15, 0, 255), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x00 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 0x7f ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x36, 0x05 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx256128(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- if ( u8x8_d_st75256_256x128_generic(u8x8, msg, arg_int, arg_ptr) != 0 )
- return 1;
- if ( msg == U8X8_MSG_DISPLAY_SETUP_MEMORY )
- {
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_256x128_display_info);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_INIT )
- {
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_init_seq);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_SET_FLIP_MODE )
- {
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256128_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256128_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- }
- return 0;
- }
- /*=============================================*/
- /* WO256X128, https://github.com/olikraus/u8g2/issues/891 */
- static const u8x8_display_info_t u8x8_st75256_wo256x128_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 32,
- /* tile_height = */ 16,
- /* default_x_offset = */ 5, /* must be 0, because this is checked also for normal mode */
- /* flipmode_x_offset = */ 0, /* used as y offset */
- /* pixel_width = */ 256,
- /* pixel_height = */ 128
- };
- static const uint8_t u8x8_d_st75256_wo256x128_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x000 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x4f), /* row range */
- U8X8_CAA(0x15, 0, 255), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x01 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x008 ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 0x7f ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x36, 0x05 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_wo256x128(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- if ( u8x8_d_st75256_256x128_generic(u8x8, msg, arg_int, arg_ptr) != 0 )
- return 1;
- if ( msg == U8X8_MSG_DISPLAY_SETUP_MEMORY )
- {
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_wo256x128_display_info);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_INIT )
- {
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_wo256x128_init_seq);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_SET_FLIP_MODE )
- {
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip1_seq); // this matches the init sequence
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip0_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- }
- return 0;
- }
- /*=============================================*/
- /* JLX25664 */
- static const u8x8_display_info_t u8x8_st75256_256x64_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 32,
- /* tile_height = */ 8,
- /* default_x_offset = */ 0, /* must be 0, because this is checked also for normal mode */
- /* flipmode_x_offset = */ 13, /* used as y offset */
- /* pixel_width = */ 256,
- /* pixel_height = */ 64
- };
- static const uint8_t u8x8_d_st75256_256x64_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x005 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x1f), /* row range */
- U8X8_CAA(0x15, 0, 255), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x00 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 0x3f ), /* 64 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 012, 0x02 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx25664(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- if ( u8x8_d_st75256_256x128_generic(u8x8, msg, arg_int, arg_ptr) != 0 )
- return 1;
- if ( msg == U8X8_MSG_DISPLAY_SETUP_MEMORY )
- {
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_256x64_display_info);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_INIT )
- {
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x64_init_seq);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_SET_FLIP_MODE )
- {
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256128_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256128_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- }
- return 0;
- }
- /*=============================================*/
- /* JLX172104 LCD */
- static const u8x8_display_info_t u8x8_st75256_172x104_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 22, /* 22=176 */
- /* tile_height = */ 13,
- /* default_x_offset = */ 84, /* */
- /* flipmode_x_offset = */ 0,
- /* pixel_width = */ 172,
- /* pixel_height = */ 104
- };
- static const uint8_t u8x8_d_st75256_jlx172104_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x003 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x4f), /* row range */
- U8X8_CAA(0x15, 0, 255), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x02 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 0x9f ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x08, 0x04 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx172104(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
- if ( u8x8->x_offset == 0 ) /* 0 means flip mode 1, then adjust y value */
- u8x8_cad_SendArg(u8x8, 8+(((u8x8_tile_t *)arg_ptr)->y_pos));
- else
- u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x+u8x8->x_offset);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
-
- /* this procedure assumes, that the overall width is 172 */
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- c *= 8;
- if ( c + x > 172u )
- {
- c = 172u;
- c -= x;
- }
-
- u8x8_cad_SendData(u8x8, c, ptr);
- x += c;
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_172x104_display_info);
- return 1;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_init_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_FLIP_MODE:
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
-
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- #endif
- }
- return 0;
- }
- /*=============================================*/
- /* JLX240160 */
- static const u8x8_display_info_t u8x8_st75256_240x160_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 30,
- /* tile_height = */ 20,
- /* default_x_offset = */ 16, /* x offset in flipmode 0 */
- /* flipmode_x_offset = */ 0, /* */
- /* pixel_width = */ 240,
- /* pixel_height = */ 160
- };
- static const uint8_t u8x8_d_st75256_240x160_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x000 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x4f), /* row range */
- U8X8_CAA(0x15, 0, 239), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x02 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 159 ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x18, 0x04 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx240160(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
- if ( u8x8->x_offset == 0 ) /* 0 means flip mode 1 */
- u8x8_cad_SendArg(u8x8, 1+(((u8x8_tile_t *)arg_ptr)->y_pos));
- else
- u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x+u8x8->x_offset);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
-
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- c *= 8;
- if ( c + x > 240u )
- {
- c = 240u;
- c -= x;
- }
-
- u8x8_cad_SendData(u8x8, c, ptr);
- x += c;
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_240x160_display_info);
- return 1;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_240x160_init_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_FLIP_MODE:
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
-
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- #endif
- }
- return 0;
-
-
-
- }
- /*=============================================*/
- /* JLX256160 */
- static const u8x8_display_info_t u8x8_st75256_256x160_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 32,
- /* tile_height = */ 20,
- /* default_x_offset = */ 0,
- /* flipmode_x_offset = */ 1, /* x offset is used as y offset in flipmode */
- /* pixel_width = */ 256,
- /* pixel_height = */ 160
- };
- static const uint8_t u8x8_d_st75256_256x160_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x000 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x28), /* row range */
- U8X8_CAA(0x15, 0, 0xFF), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x00 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 159 ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x18, 0x05 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx256160(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
- if ( u8x8->x_offset == 1 ) /* 1 means flip mode 1 */
- u8x8_cad_SendArg(u8x8, 1+(((u8x8_tile_t *)arg_ptr)->y_pos));
- else
- u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x+u8x8->display_info->default_x_offset);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
-
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- /* SendData can not handle more than 255 bytes, treat c > 31 correctly */
- if ( c > 31 )
- {
- u8x8_cad_SendData(u8x8, 248, ptr); /* 31*8=248 */
- ptr+=248;
- c -= 31;
- }
-
- u8x8_cad_SendData(u8x8, c*8, ptr);
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_256x160_display_info);
- return 1;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x160_init_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_FLIP_MODE:
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256160_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256160_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
-
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- #endif
- }
- return 0;
- }
- /*=============================================*/
- /* JLX256160 mirror version #930 */
- static const uint8_t u8x8_d_st75256_256x160m_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x000 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x28), /* row range */
- U8X8_CAA(0x15, 0, 0xFF), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x02 ), /* data scan dir ( CHANGED FOR MIRROR VERSION ) */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 159 ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x18, 0x05 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx256160m(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
- if ( u8x8->x_offset == 1 ) /* 1 means flip mode 1 */
- u8x8_cad_SendArg(u8x8, 1+(((u8x8_tile_t *)arg_ptr)->y_pos));
- else
- u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x+u8x8->display_info->default_x_offset);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
-
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- /* SendData can not handle more than 255 bytes, treat c > 31 correctly */
- if ( c > 31 )
- {
- u8x8_cad_SendData(u8x8, 248, ptr); /* 31*8=248 */
- ptr+=248;
- c -= 31;
- }
-
- u8x8_cad_SendData(u8x8, c*8, ptr);
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_256x160_display_info);
- return 1;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x160m_init_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_FLIP_MODE:
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
-
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- #endif
- }
- return 0;
- }
- /*=============================================*/
- /* JLX256160 alternative version from issue #561 */
- static const u8x8_display_info_t u8x8_st75256_256x160_alt_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 32,
- /* tile_height = */ 20,
- /* default_x_offset = */ 0, /* x offset in flipmode 0 */
- /* flipmode_x_offset = */ 0, /* */
- /* pixel_width = */ 256,
- /* pixel_height = */ 160
- };
- static const uint8_t u8x8_d_st75256_256x160_alt_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x000 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x4f), /* row range */
- U8X8_CAA(0x15, 0, 255), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x02 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 159 ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x18, 0x05 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx256160_alt(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
- if ( u8x8->x_offset == 0 ) /* 0 means flip mode 1 */
- u8x8_cad_SendArg(u8x8, 1+(((u8x8_tile_t *)arg_ptr)->y_pos));
- else
- u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x+u8x8->x_offset);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
-
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- /* SendData can not handle more than 255 bytes, treat c > 31 correctly */
- if ( c > 31 )
- {
- u8x8_cad_SendData(u8x8, 248, ptr); /* 31*8=248 */
- ptr+=248;
- c -= 31;
- }
-
- u8x8_cad_SendData(u8x8, c*8, ptr);
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_256x160_alt_display_info);
- return 1;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x160_alt_init_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_FLIP_MODE:
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
-
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- #endif
- }
- return 0;
- }
- /*=============================================*/
- /* JLX19296 LCD */
- static const u8x8_display_info_t u8x8_st75256_192x96_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 24,
- /* tile_height = */ 12,
- /* default_x_offset = */ 0, /* */
- /* flipmode_x_offset = */ 64,
- /* pixel_width = */ 192,
- /* pixel_height = */ 96
- };
- static const uint8_t u8x8_d_st75256_jlx19296_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x003 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x4f), /* row range */
- U8X8_CAA(0x15, 0, 255), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x00 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 0x9f ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x2e, 0x03 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx19296(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
- if ( u8x8->x_offset == 0 ) /* 0 means flip mode 1, then adjust y value */
- u8x8_cad_SendArg(u8x8, 8+(((u8x8_tile_t *)arg_ptr)->y_pos));
- else
- u8x8_cad_SendArg(u8x8, 1+(((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x+u8x8->x_offset);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
-
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- c *= 8;
- if ( c + x > 192u )
- {
- c = 192u;
- c -= x;
- }
-
- u8x8_cad_SendData(u8x8, c, ptr);
- x += c;
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_192x96_display_info);
- return 1;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx19296_init_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_FLIP_MODE:
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256160_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256160_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- /*
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- */
-
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- #endif
- }
- return 0;
- }
- /*=============================================*/
- /*
- JLX16080 LCD
- https://github.com/olikraus/u8g2/issues/2058
- WARNING: NOT FULLY TESTED in issue 2058!
- */
- static const u8x8_display_info_t u8x8_st75256_jlx16080_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 20,
- /* tile_height = */ 10,
- /* default_x_offset = */ 0, /* */
- /* flipmode_x_offset = */ 0,
- /* pixel_width = */ 160,
- /* pixel_height = */ 80
- };
- static const uint8_t u8x8_d_st75256_jlx16080_init_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
-
- U8X8_DLY(20),
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x094 ), /* sleep out */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x0ae ), /* display off */
- U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_CA( 0x0d7, 0x09f ), /* disable auto read */
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x032 ), /* analog circuit set */
- U8X8_A( 0x000 ), /* code example: OSC Frequency adjustment */
- U8X8_A( 0x001 ), /* Frequency on booster capacitors 1 = 6KHz? */
- U8X8_A( 0x003 ), /* Bias: 1: 1/13, 2: 1/12, 3: 1/11, 4:1/10, 5:1/9 */
-
- //U8X8_C( 0x031 ), /* select 01 commands */
- U8X8_C( 0x020 ), /* gray levels */
- U8X8_A( 0x01 ),
- U8X8_A( 0x03 ),
- U8X8_A( 0x05 ),
- U8X8_A( 0x07 ),
- U8X8_A( 0x09),
- U8X8_A( 0x0b ),
- U8X8_A( 0x0d ),
- U8X8_A( 0x10 ),
- U8X8_A( 0x11 ),
- U8X8_A( 0x13 ),
- U8X8_A( 0x15 ),
- U8X8_A( 0x17 ),
- U8X8_A( 0x19 ),
- U8X8_A( 0x1b ),
- U8X8_A( 0x1d ),
- U8X8_A( 0x1f ),
-
-
- U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA(0x75, 0, 0x4f), /* row range */
- U8X8_CAA(0x15, 0, 255), /* col range */
-
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0xbc, 0x00 ), /* data scan dir */
- U8X8_A( 0xa6 ), /* ??? */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0x00c ), /* data format LSB top */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_C( 0xca ), /* display control, 3 args follow */
- U8X8_A( 0x00 ), /* 0x00: no clock division, 0x04: devide clock */
- U8X8_A( 0x9f ), /* 1/160 duty value from the DS example code */
- U8X8_A( 0x20 ), /* nline off */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x0f0, 0x010 ), /* monochrome mode = 0x010*/
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CAA( 0x81, 0x2e, 0x03 ), /* Volume control */
- //U8X8_C( 0x030 ), /* select 00 commands */
- U8X8_CA( 0x020, 0x00b ), /* Power control: Regulator, follower & booster on */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_st75256_jlx16080(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t x, c;
- uint8_t *ptr;
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_DRAW_TILE:
-
- u8x8_cad_StartTransfer(u8x8);
- x = ((u8x8_tile_t *)arg_ptr)->x_pos;
- x *= 8;
-
- u8x8_cad_SendCmd(u8x8, 0x030 ); /* select command set */
- u8x8_cad_SendCmd(u8x8, 0x075 ); /* row */
-
-
- //if ( u8x8->x_offset == 0 ) /* 0 means flip mode 1, then adjust y value */
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- //else
- u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
-
-
- u8x8_cad_SendArg(u8x8, 0x04f);
- //u8x8_cad_SendArg(u8x8, (((u8x8_tile_t *)arg_ptr)->y_pos));
- u8x8_cad_SendCmd(u8x8, 0x015 ); /* col */
- u8x8_cad_SendArg(u8x8, x+u8x8->x_offset);
- u8x8_cad_SendArg(u8x8, 255);
- u8x8_cad_SendCmd(u8x8, 0x05c );
-
-
- do
- {
- c = ((u8x8_tile_t *)arg_ptr)->cnt;
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr;
- c *= 8;
- if ( c + x > 192u )
- {
- c = 192u;
- c -= x;
- }
-
- u8x8_cad_SendData(u8x8, c, ptr);
- x += c;
- arg_int--;
- } while( arg_int > 0 );
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_jlx16080_display_info);
- return 1;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx16080_init_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_256x128_powersave1_seq);
- return 1;
- case U8X8_MSG_DISPLAY_SET_FLIP_MODE:
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256160_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256160_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- /*
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx172104_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- */
-
- #ifdef U8X8_WITH_SET_CONTRAST
- case U8X8_MSG_DISPLAY_SET_CONTRAST:
- u8x8_cad_StartTransfer(u8x8);
-
- u8x8_cad_SendCmd(u8x8, 0x030 );
- u8x8_cad_SendCmd(u8x8, 0x081 ); /* there are 9 bit for the volume control */
- u8x8_cad_SendArg(u8x8, (arg_int & 0x1f)<<1 ); /* lower 6 bit */
- u8x8_cad_SendArg(u8x8, (arg_int>>5)); /* upper 3 bit */
-
- u8x8_cad_EndTransfer(u8x8);
- return 1;
- #endif
- }
- return 0;
- }
- /*=============================================*/
- /* 128x128 issue https://github.com/olikraus/u8g2/issues/2702*/
- static const u8x8_display_info_t u8x8_st75256_128x128_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 20,
- /* pre_chip_disable_wait_ns = */ 20,
- /* reset_pulse_width_ms = */ 5,
- /* post_reset_wait_ms = */ 5, /**/
- /* sda_setup_time_ns = */ 20, /* */
- /* sck_pulse_width_ns = */ 40, /* */
- /* sck_clock_hz = */ 4000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0, /* active high, rising edge */
- /* i2c_bus_clock_100kHz = */ 4, /* 400KHz */
- /* data_setup_time_ns = */ 15,
- /* write_pulse_width_ns = */ 70,
- /* tile_width = */ 16,
- /* tile_height = */ 16,
- /* default_x_offset = */ 0, /* must be 0, because this is checked also for normal mode */
- /* flipmode_x_offset = */ 0, /* used as y offset */
- /* pixel_width = */ 128,
- /* pixel_height = */ 128
- };
- static const uint8_t u8x8_d_st75256_128x128_init_seq[] = {
- U8X8_START_TRANSFER(),
- U8X8_DLY(10), // 10ms delay
- U8X8_C(0x30), // Extension command 1
- U8X8_C(0x6E), // Enable Master
- U8X8_C(0x31), // Extension command 2
- U8X8_C(0xD7), U8X8_A(0x9F), // Disable Auto Read
- U8X8_C(0xE0), U8X8_A(0x00), // Enable OTP Read
- U8X8_DLY(10),
- U8X8_C(0xE3), // OTP Up-Load
- U8X8_DLY(20), // 20ms delay
- U8X8_C(0xE1), // OTP Control End
- U8X8_C(0x30), // Extension command 1
- U8X8_C(0x94), // Sleep Out
- U8X8_C(0xAE), // Display Off
- U8X8_DLY(50), // 50ms delay
- U8X8_C(0x20), // Power Control
- U8X8_A(0x0B), // VB, VR, VF All on
- U8X8_C(0x81), U8X8_A(0x1D), U8X8_A(0x04), // Set Vop (15.0V)
- U8X8_C(0x31), // Extension command 2
- U8X8_C(0x32), U8X8_A(0x00), // Analog Set
- U8X8_A(0x01), // Booster efficiency level 1
- U8X8_A(0x02), // Bias 1/12
- U8X8_C(0x51), U8X8_A(0xFA), // Booster Level x 8
- U8X8_C(0x30), // Extension command 1
- U8X8_C(0xF0), U8X8_A(0x10), // Display Mode = Monochrome
- U8X8_C(0xCA), // Display Control
- U8X8_A(0x00), // CL Dividing Ratio = Not divided
- U8X8_A(0x7F), // Duty Set = 128
- U8X8_A(0x3F),
- U8X8_C(0xBC), U8X8_A(0x00), // Data Scan Direction
- U8X8_C(0xA6), // Normal Display
- U8X8_C(0x0C), // Data Format = LSB on Top
- U8X8_CAA(0x75, 0x00, 0x7F), // row range for 128 rows
- U8X8_CAA(0x15, 0x00, 0x7F), // col range for 128 cols
- U8X8_C(0x31), // Extension command 2
- U8X8_C(0x40), // Internal Power Supply
- U8X8_C(0x30), // Extension command 1
- U8X8_C(0xaf), // Display On
- U8X8_END_TRANSFER(),
- U8X8_END()
- };
- uint8_t u8x8_d_st75256_128x128(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- if ( u8x8_d_st75256_256x128_generic(u8x8, msg, arg_int, arg_ptr) != 0 )
- return 1;
- if ( msg == U8X8_MSG_DISPLAY_SETUP_MEMORY )
- {
- //u8x8_SetI2CAddress(u8x8, 0x078); /* lowest I2C adr of the ST75256 */
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_st75256_128x128_display_info);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_INIT )
- {
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_128x128_init_seq);
- return 1;
- }
- else if ( msg == U8X8_MSG_DISPLAY_SET_FLIP_MODE )
- {
- if ( arg_int == 0 )
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256128_flip0_seq);
- u8x8->x_offset = u8x8->display_info->default_x_offset;
- }
- else
- {
- u8x8_cad_SendSequence(u8x8, u8x8_d_st75256_jlx256128_flip1_seq);
- u8x8->x_offset = u8x8->display_info->flipmode_x_offset;
- }
- return 1;
- }
- return 0;
- }
|