You are reading a single comment by @ancienthero and its replies. Click here to read the full conversation.
  • I've used this one https://www.espruino.com/binaries/travisĀ­/master/espruino_1v92.80_pico_1r3.bin

    works like a charm!

     _____                 _
    |   __|___ ___ ___ _ _|_|___ ___
    |   __|_ -| . |  _| | | |   | . |
    |_____|___|  _|_| |___|_|_|_|___|
              |_| http://espruino.com
     1v92.80 Copyright 2016 G.Williams
    >
    >t = new Date;
    =Date { "ms": 949363217722.27758789062 }
    >t.toString();
    ="Tue Feb 1 2000 00:00:17 GMT+0000"
    >t.setHours(10);
    =949399217722
    >t.toString();
    ="Tue Feb 1 2000 10:00:17 GMT+0000"
    >t.setMinutes(10);
    =949399817722
    >t.toString();
    ="Tue Feb 1 2000 10:10:17 GMT+0000"
    >t.setFullYear(2022);
    =1643710217722
    >t.toString();
    ="Tue Feb 1 2022 10:10:17 GMT+0000"
    >t.setDate(29);
    =1646129417722
    >t.toString();
    ="Tue Mar 1 2022 10:10:17 GMT+0000"
    >t.setMonth(4);
    =1651399817722
    >t.toString();
    ="Sun May 1 2022 10:10:17 GMT+0000"
    > 
    

    Thank you!

About

Avatar for ancienthero @ancienthero started