Don't worry about formatting, just type in the text and we'll take care of making sense of it. We will auto-convert links, and if you put asterisks around words we will make them bold.
Tips:
For a full reference visit the Markdown syntax.
Posted by @Andreas_Rozek
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
While developing my "Theme Setter" app, I had to implement a few additional concepts in order to overcome the limitations of the "layout" library.
These concepts are:
common
attribute - the "factory functions" already take care of this attribute and use them as defaults. "Common settings" may be easily cascaded (by means ofObject.assign
) and overwritten in factory functions, if need beYou will find a description (with examples) of these concepts on GitHub.
Additionally, you may also just look into the source code of my "Theme Setter" in order to see all these concepts in a "real" application.