Rei Vilo 695 Posted November 15, 2012 Share Posted November 15, 2012 Library link: Energia library for $4.30 LCD BoosterPack Store link : The $4.30 LCD BoosterPack - Limited Edition energia, bluehash and SugarAddict 3 Quote Link to post Share on other sites
Rei Vilo 695 Posted November 17, 2012 Author Share Posted November 17, 2012 The library supports normal and large fonts. Quote Link to post Share on other sites
Rei Vilo 695 Posted December 13, 2012 Author Share Posted December 13, 2012 (edited) The library for the LCD BoosterPack with Nokia 7110 LCD now supports both LaunchPad and StellarPad. See commit 95c33da pending approval. Download it from http://github.com/energia/Energia/tree/master/examples/7.Display/LCD_BoosterPack Edited December 21, 2012 by Rei Vilo bluehash 1 Quote Link to post Share on other sites
bambur 0 Posted March 22, 2016 Share Posted March 22, 2016 Hello. Prompt please where it is possible to download library for the LCD BoosterPack with Nokia 7110 LCD. the reference stated above doesn't work. Thanks in advance. Mikhail. Quote Link to post Share on other sites
Rei Vilo 695 Posted March 22, 2016 Author Share Posted March 22, 2016 It is bundled with Energia. Quote Link to post Share on other sites
bambur 0 Posted March 23, 2016 Share Posted March 23, 2016 My friend has presented me the Enerjia set without CD disk, I want to connect to him the display from Nokia 7110, prompt please where I can follow libraries and examples? Quote Link to post Share on other sites
dubnet 238 Posted March 23, 2016 Share Posted March 23, 2016 You can download Energia here: http://energia.nu/download/ Quote Link to post Share on other sites
bambur 0 Posted March 23, 2016 Share Posted March 23, 2016 the link from the http://energia.nu/reference/libraries/ page brings here ( Quote Link to post Share on other sites
roadrunner84 466 Posted March 23, 2016 Share Posted March 23, 2016 I made an extension for the LCD library to support 4x6 font, like ye olde TI graphing calculators. In LCD_SharpBoosterPack_SPI.h, after #include "Terminal12.h" add #include "Terminal4.h" In LCD_SharpBoosterPack_SPI.cpp, in LCD_SharpBoosterPack_SPI::text after else if (_font==1) { for (j=0; j<s.length(); j++) { for (i=0; i<11; i++){ for (k=7; k>=0; k--){ setXY(x+offset, y+k, Terminal11x16[s.charAt(j)-' '][2*i]&(1<<k)); setXY(x+offset, y+k+8, Terminal11x16[s.charAt(j)-' '][2*i+1]&(1<<k)); } offset += 1; } offset += 1; // spacing } } add else if (_font==2) { for (j=0; j<s.length(); j++) { for (i=0; i<3; i++){ for (k=4; k>=0; k--) setXY(x+offset, y+k, Terminal4x6[s.charAt(j)-' ']&(1<<(14 - i - k*3))); offset += 1; } offset += 1; // spacing } } Add the attached header (Terminal4.h) to your library directory. Note: I did not test this, because I do not own an LCD boosterpack. I might accidentally have flipped the font one way or the other, hope I didn't : ) Terminal4.h Terminal4.txt Terminal4.py.txt Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.