• Mk4 is soldered and glued together. Flashlight, additional buttons and even the selfmade BT antenna all seem to work.
    The additional buttons came to life using this simple code:

    pinMode(42, "input_pullup");
    pinMode(43, "input_pullup");
    setWatch(()=>{print("pressed lower");}, 42, {repeat: true, edge:"rising", debounce:20});
    setWatch(()=>{print("pressed upper");}, 43, {repeat: true, edge:"rising", debounce:20});
    

    Now I just need to find actual use-cases for those :) First try will be just emitting swipe/drag events to use them for scrolling menus. It is totally awesome that Espruino gives us so much easily accessible flexibility for tinkering.


    2 Attachments

    • IZk7E90oT72eHlp4kplOGw_a316240b1637e039a79a3746b27a08a1b5934384.jpg
    • M7qGM53uRK61TDvrPyTgQg_9fdf99c5dee120708aaed2074fe44d4d873eaf6f.jpg
About

Avatar for halemmerich @halemmerich started