Jump to content

Welcome to Smart Home Forum by FIBARO

Dear Guest,

 

as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.

 

As a member you can:

  •     Start new topics and reply to others
  •     Follow topics and users to get email updates
  •     Get your own profile page and make new friends
  •     Send personal messages
  •     ... and learn a lot about our system!

 

Regards,

Smart Home Forum by FIBARO Team


  • 0

HC3 Lua Time conversion into string / sunrise and sunset into string


Question

Posted

I would like to handle the current time in a string form as in HC2.

How can I program following HC2 Lua commands:

- currentDate = os.date("*t")

- Current time as hh:mm:

     TimeAsString =  string.format("%02u",currentDate.hour).. ":" .. string.format("%02u", currentDate.min)

- Current sunrise / sunset as hh:mm:

    Sunrise = (string.sub(fibaro:getValue(1, "sunriseHour"),1,2) .. ":" .. string.sub(fibaro:getValue(1, "sunriseHour"),4,5)

 

Could anybody help me on that? I am getting crazy not finding anything in the manuals...

 

5 answers to this question

Recommended Posts

  • 0
Posted
1 hour ago, kauf5mx said:

I would like to handle the current time in a string form as in HC2.

How can I program following HC2 Lua commands:

- currentDate = os.date("*t")

- Current time as hh:mm:

     TimeAsString =  string.format("%02u",currentDate.hour).. ":" .. string.format("%02u", currentDate.min)

- Current sunrise / sunset as hh:mm:

    Sunrise = (string.sub(fibaro:getValue(1, "sunriseHour"),1,2) .. ":" .. string.sub(fibaro:getValue(1, "sunriseHour"),4,5)

 

Could anybody help me on that? I am getting crazy not finding anything in the manuals...

 

 

Current time:

TimeString = os.date("%H:%M")

Please login or register to see this link.

Please login or register to see this link.

 

Sunrise/sunset are already in a string hh:mm format. Why you need to change it?

 

  • 0
  • Inquirer
  • Posted

    Thank you for this quick answer! Cool, it works fine, and thank you for the detailed description. I was close to the solution but I must have made a mistake.

    For sunrise and sunset however: How do I get sunrise and sunset time in string format?

    • 0
  • Inquirer
  • Posted

    How can I get sunrise and sunset time as string such as hh:mm?

    • 0
  • Inquirer
  • Posted

    I have found a workaround by creating two scenes (one for sunrise and one for sunset). They are triggered at sunrise respectively at sunset and they sotre their respective "current time" into the corresponding global variable. Problem solved.

     

    • 0
    Posted

    fibaro:getValue(1, "sunriseHour")

    returns the time as a hh:mm string

    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.

    Guest
    Answer this question...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

    ×
    ×
    • Create New...