Adding Project Descriptions with 000desc.txt
How to add project descriptions using 000desc.txt
When you create a 000desc.txt
file in the project folder, TWELITE STAGE APP displays its contents in the project folder list.

Example display of 000desc.txt
The file should be written as plain text in UTF-8 format. There are two formats as follows.
Format 1
LED lights up when the switch is pressed
act4 operates an act that lights up the LED when the switch connected to TWELITE DIP is pressed.
https://mono-wireless.com/jp/products/act/index.html
- The first line is the title line.
- The following lines describe details.
- If the last line starts with http, it becomes a link to a website.
Format 2
[JAPANESE]
TITLE=act template
DESC=This file contains only empty setup() and loop() functions.
Please use it to write a new act.
URL=jp/MWX/content/Act_samples/README.html
[ENGLISH]
TITLE=act empty template
DESC=This act file only contains empty setup() and loop(),
which is intended to write a new act.
URL=en/MWX/content/Act_samples/README.html
This format is like an ini file. The item name starting from the beginning of the line and the =
character define the item, and the content after =
is the item’s content.
Item Definition | Details |
---|---|
[JAPANESE] , [ENGLISH] | Block separators |
TITLE= | Title line |
DESC= | Description. Can include multiple lines with line breaks. |
URL= | Link to a website or file |
About URL specification
URL= | Details |
---|---|
Starting with https: , http: | Opens that address |
Others | Specify a relative folder based on {MWSDK_ROOT}/docs/ .If set as a/b/c.html , it is converted to {MWSDK_ROOT}/docs/a/b/c.html . |