add watch face to display files on the filesystem #131
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Simple watch face, displays numbered files
FILE0000.TXT,FILE0001.TXTuntil looping around when a file is not found. When used in conjunction with theirda_upload_face, this should function as a databank that you can update without cracking open the watch.File format is plain ASCII text and must be exactly 12 characters long:
)The last character acts as a bitmask for setting indicators. Bit 5 is always set, and does not correspond to any indicator.
0b00100001/!) sets the bell indicator0b00100010/") sets the PM indicator0b00100100/$) sets the colon0b00101000/() sets the LAP indicator0b00110000/0) sets the decimal point on the custom LCD0b01100000/`) sets the leading 1 on the custom LCDYou can mix and match these, so to set both the colon and the PM indicator, you'd use the ampersand
&(0b00100110)