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


samuel

Member
  • Posts

    470
  • Joined

  • Last visited

About samuel

Profile information

  • Gender
    Male
  • Country
    Almere, Netherlands
  • Gateway/s
    Home Center 2

Recent Profile Visitors

956 profile views

samuel's Achievements

Smart User

Smart User (3/8)

27

Reputation

  1. Eventually I came up with this script, I wrote myself. I use a relay to a smart implant to detect a brownout, the input trigger i use to trigger the scene. local currentDate = os.date("%H:%M - %d %B %Y") local seconds = 0; local UPStime = json.decode(fibaro:getGlobalValue("UPSbattery")) local mytable = {0, 0} if (tonumber(fibaro:countScenes()) > 1) then --1 fibaro:abort(); end if UPStime[1] < 60 then fibaro:debug("At " ..UPStime[2].. " the UPS was " ..UPStime[1].. " seconds on battery") else local minutes = math.floor(UPStime[1] / 60) local remainingSeconds = UPStime[1] % 60 fibaro:debug("At " ..UPStime[2].. " the UPS was " ..(minutes).. ":" ..(remainingSeconds).. " minutes on battery") end if tonumber(fibaro:getValue(455, "value")) > 0 then -- > fibaro:debug("The UPS is running on battery") mytable[2] = currentDate jTable = json.encode(mytable) fibaro:setGlobal("UPSbattery", jTable); repeat fibaro:sleep(10000) seconds = seconds + 10 mytable[1] = seconds --fibaro:debug(mytable[1]) -- set global variable jTable = json.encode(mytable) fibaro:setGlobal("UPSbattery", jTable); until (tonumber(fibaro:getValue(455, "value")) == 0 ) -- == if seconds < 60 then fibaro:debug("At " ..(mytable[2]).. " the UPS was " ..(seconds).. " seconds on battery") else local minutes = math.floor(seconds / 60) local remainingSeconds = seconds % 60 fibaro:debug("At " ..(mytable[2]).. " the UPS was " ..(minutes).. ":" ..(remainingSeconds).. " minutes on battery") end fibaro:debug("THe Power is been Restored - UPS is running on Mains!") seconds = 0 mytable = {} end
  2. UPS time offline I want to make a scene in how long the battery last of my UPS till when the power is been restored. How can I calculate two times in between? (13:55 - 12:35 = 80 min) Thanks for you help
  3. same here HC2 netherlands
  4. Is there a secure way to sent/receive the data, as it is " http" and not " https"? The password is easily found in wireshark
  5. In the app at the home screen > you are able to press on the motion sensors, which gives you the next photo Here you can see that the "RFID Panel" is been recognized as a "motion sensor" While the input is been selected as a " other binary input" I think this is a bug "undocumented feature" Can this be fixed in the next release? mobile app 1.17.0 smart implant v5.2 HC2 v4.630
  6. When My phone is connected by Wifi, it shows all the correct icons, but when i am connected to 4G and loaded the app v1.17.0. I got "?" question marks at the icons, see below in the photo. The question marks also shows in the different rooms from the house, not only at the smart home page! How can this be resolved?
  7. Tried it, but isn't working App version 1.16.0 HC2 version 4.620 At the "favourites" tab from the app, I am able to change the order
  8. In the old version app, it was possible to move items up and down Example from the picture: move the "Walk-in Shower" down and the "Whirlpool" up Can this be added in the next version of the app?
  9. Feature: in app 1.16.0 As I don't have any items in the "gates" (example) in the hallway, that this will be hidden in the app. See picture
  10. How to outline text to the right evenly in the app 1.16.0 I do it now by means of a space like: if (usage <= -1000) then fibaro:call(VDID, "setProperty", "ui.Label1.value", " " ..usage.." Watt") In the app you can see the "Energy Monitor", below = usage........... 378.. (orange circle) the 378... is halfway cut.. but on the virtual device it is displayed well. Text outlined to the right, isn't straight down (orange line), while in the web interface the text is nicely outlined to the right How can this be improved in the next version of the app ? This outlining is all the same for the virtual devices
  11. In my app v1.16.0, I have these questions marks instead of the pictogram from the device HC2 v4.620 How to resolve the pictograms from the devices?
×
×
  • Create New...