Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. kaos
    K
    • Continue chat with kaos
    • Start new chat with kaos
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    kaos

    @kaos

    0
    Reputation
    2
    Posts
    480
    Profile views
    0
    Followers
    1
    Following
    Joined Last Online

    kaos Follow

    Posts made by kaos

    • RE: Bitcoin / Multi Crypto Coin Ticker with 24 candlesticks chart

      Thanks Frittna, yes my timezone is UTC +8, and I think I have found a reference on how to set that <see below> ; my timezone dont have DST, so it should just a simple one liner (i think), still not tested though..cuz ya, i'm a newbie, so about that compiling, could you point me exactly where to look? :)

      My M5stack is the FIRE version ; with the LED bars , and this is my first project using it (actually got inspired to get it after seeing your project, as I was wanting a proper tabletop ticker for some time now), will there be any version that can utilize those LEDs as indicators, that would be awesome!

      ""
      For a time zone that does not change to daylight/summer time, pass the same rule
      twice to the constructor, e.g.:
      Timezone usAZ(usMST, usMST);
      In fact the WorldClock example does this for Arizona:

      //US Mountain Time Zone (Denver, Salt Lake City)
      TimeChangeRule usMDT = {"MDT", Second, dowSunday, Mar, 2, -360};
      TimeChangeRule usMST = {"MST", First, dowSunday, Nov, 2, -420};
      Timezone usMT(usMDT, usMST);

      //Arizona is US Mountain Time Zone but does not use DST
      Timezone usAZ(usMST, usMST);

      ""

      So mine should be >>>

      //for Malaysia its MYT (UTC+8)Time Zone but does not have DST
      Timezone MYT(MYT, MYT);

      ?

      posted in PROJECTS
      K
      kaos
    • RE: Bitcoin / Multi Crypto Coin Ticker with 24 candlesticks chart

      Hi frittna,

      Awersome work for making this for us, its a struggle to keep watch of the crypto market while also living a life away from it.
      I'm a noob, but i'm sure if I know exactly where to edit, i could get away with it, so my query is how do edit one of the existing
      timezones to get my local timezone option? I'm looking for GMT +8 (Singapore/Kuala Lumpur Timezone). Thanks is advance!

      posted in PROJECTS
      K
      kaos