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


Search the Community

Showing results for tags 'toilet'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • FIBARO Community
    • FIBARO Portal and Forum policy
    • FIBARO
    • Say hello!
    • Off-topics
  • FIBARO Update
    • FIBARO System Update
    • FIBARO Mobile Update
  • FIBARO Community Support
    • Scenes and Interface
    • FIBARO Products
    • FIBARO Mobile
    • FIBARO HomeKit
    • FIBARO Assistant Integrations
    • Other Devices / Third-party devices
    • Tutorials and Guides
    • Home Automation
    • Suggestions
  • FIBARO Społeczność
    • FIBARO
    • Przywitaj się!
    • Off-topic
  • FIBARO Aktualizacja
    • FIBARO System Aktualizacja
    • FIBARO Mobile Aktualizacja
  • FIBARO Wsparcie Społeczności
    • Sceny i Interfejs
    • FIBARO Urządzenia
    • FIBARO Mobilnie
    • FIBARO HomeKit
    • Integracja z Amazon Alexa i Google Home
    • Urządzenia Firm Trzecich
    • Poradniki
    • Automatyka Domowa
    • Sugestie

Categories

  • Scenes
  • Virtual Devices
  • Quick Apps
  • Icons

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Google+


Skype


Website URL


WhatsApp


Country


Gateway/s


Interests

Found 1 result

  1. In my toilet i have an AEON LABS Multisensor 6 Aeotec, whereby my light is been triggered by the sensor. You can see the scene below, often the light goes out because there is no movement anymore in the toilet, while the person is still in the toilet! if I increase the reset time, then it takes longer before the light dims (off), but on the other side, I would like to have a scene, when I step outside the toilet the light dims to off, within around 5 seconds. Does somebody has an improved scene from his or her timer from the toilet or any other scene what is equivalent (revised) to this scene? --[[ %% properties 442 value %% globals --]] -- User Settings local debug = false; -- true local toiletSpot = 408; -- ToiletSpot -- function variables local time = 0; local timeReset = 15; -- delay in seconds during which PresentState will not change after last breach local timerStop = 16; local motionSensor = 442; -- Motion Sensor Toilet local Motion = tonumber(fibaro:getValue(motionSensor, "value")); local toiletSpotStatus = tonumber(fibaro:getValue(toiletSpot, "value")); local function log(str) if debug then fibaro:debug(str); end; end -- avoid loop of this scene if tonumber(fibaro:countScenes()) > 1 then fibaro:abort(); end ----------------------------------------------------------------------------- -- Do Not change below this line ----------------------------------------------------------------------------- function toiletFunction() fibaro:call(toiletSpot, "setValue", "75") log("Light Turned ON"); log(timeReset.. " seconds before Light goes OFF starting at " .. os.date()); fibaro:sleep(5000); -- loop start ————————————————————----------------------------------------— repeat if tonumber(fibaro:getValue(motionSensor, "value")) > 0 then time = 0; log("Movement detected from Motion Sensor"); else time = time + 1; log("No Movement " .. time .." of " .. timeReset .. " seconds Detected"); end fibaro:sleep(999); until time >= timeReset -- 16 > 15 fibaro:call(toiletSpot, "turnOff"); log("Timer stopped, Vanity Mirror OFF"); log("-------------------------------------"); end if Motion > 0 then log("Start Timer") toiletFunction() end
×
×
  • Create New...