thyttan cdfb4d61cb Bangle_setUI_F18: add btnRelease (read below)
Explicitly state button should fire on falling edge.

Does not change `btn` mapped handlers to act on rising edge just jet.

As per suggestion in
https://github.com/espruino/Espruino/pull/2571#issuecomment-2426702779.
2024-11-01 21:14:18 +01:00
..
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-11-08 13:35:10 +00:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2023-06-13 09:22:21 +01:00
2018-01-28 23:10:35 +01:00
2018-08-13 09:24:37 +01:00

Built-in JS modules

Simply stick the JS modules you want in this directory, then modify the boards/BOARDNAME.py file so it includes a line that sets JSMODULESOURCES:

info = {
 ....
 'build' : {
   ....
   'makefile' : [
     ....
     'JSMODULESOURCES+=libs/js/YOUR_MODULE.min.js',
   ]
 }
};

or add them as prefix to make

JSMODULESOURCES=libs/js/YOUR_MODULE.min.js make

Then when you rebuild, require("YOUR_MODULE") will magically pull in your module.

Notes

  • Until referenced, modules use NO RAM
  • Once referenced, the JS code in a module will be executed (from Flash).
  • Every function declared in the module's root scope will take up some RAM
  • However the code inside that function will be kept in Flash memory, so won't take up RAM.