does the emulator support Terminal? #1303
Replies: 9 comments
-
Posted at 2019-12-03 by @gfwilliams Thanks for letting me know - I'll look into getting it added. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-03 by @gfwilliams It's fixed now! |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-03 by Andreas_Rozek Great! So, now I can finally do what I planned as my very first step with the Bangle.js emulator:
and it worked! Thanks a lot for all your effort! Kind regards, Andreas Rozek |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-12 by sebi Is there a way to change the Terminal font size from |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-12 by @fanoush Seems so be hardcoded here https://github.com/espruino/Espruino/blob/master/libs/graphics/jswrap_terminal.c#L35 |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-13 by @allObjects Font when used is always related to graphics (register with Graphics after loading). The reason it started out with the 4x6 font is the memory consumption by (larger) loadable bit map fonts. 4x6 font is dedicated implemented in graphics (proprietary - other than the other bit map fonts - storage structure and render code). There are thoughts to make 4x6 be treated same as 6x8 and 6x8 used instead 4x6. Having it not fixed built into Graphics and the option to 'remove'/'exchange' it would be nice. Having it optional would free up enough space to total with less increase of memory footprint when (just) using 6x8. Espruino history speaking - AFAIK - The bit map fonts as modules came after vector font and the Graphics built-in 4x6 font.,, @gfwilliams would know for sure, |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-13 by @gfwilliams
The font should be 6x8 already? It's not on Pixl but if the 6x8 font is included it's used by default. If you draw in 4x6 you'll see how much smaller it actually is :) |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-13 by sebi
Indeed it is! |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-16 by @gfwilliams I should add that there's also a VT100 JS module here: http://www.espruino.com/VT100 In that case you could modify it to use whatever fonts (or parts of the screen) you wanted :) |
Beta Was this translation helpful? Give feedback.
-
Posted at 2019-12-03 by Andreas_Rozek
Hello!
Whenever I try to use Terminal functions in the emulator, I get
Are there plans to implement "Terminal" in the emulator?
Thanks in advance for your effort!
Kind regards,
Andreas Rozek
Beta Was this translation helpful? Give feedback.
All reactions