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


TEDEE SMART LOCK LUA PULL SPRING


Nyko

Recommended Posts

IS THERE ANYBODY WHO KNOWS IF ITS POSSIBLE TO ONLY PULL THE SPRING OF A TEDEE LOCK???

Link to comment
Share on other sites

  • 3 weeks later...
  • 2 weeks later...
  • 2 weeks later...

The technical specifications of a smart lock may not seem applicable in real life. But in fact, this smart device changes everything in the way you use your door every day. A step-by-step explanation of the main features of Smart Lock will help you understand how all the technologies work together for your convenience It will help you use a smart lock in a way that is completely yours.

Link to comment
Share on other sites

  • 3 weeks later...

There is a pretty comprehensive article on the manufacturer's website about the pull spring feature:

Please login or register to see this link.



If you do not find the information you need, it is worth contacting their support. They respond very quickly and always try to help.

Link to comment
Share on other sites

  • 6 months later...
  • Topic Author
  • I found a way. Now Fibaro made it possible to do direct from the device options. but seems not to work correct

    The other way is to write a Lua script.

     

    local url = "https://api.tedee.com/api/v1.28/my/lock/LOCKIDHERE/operation/pull"
    local headers = {
            ["Accept"] = "application/json",
            ["authorization"] = 'personalkey HERETHEKEY',
        }

    local selfhttp = net.HTTPClient({timeout=2000})

    selfhttp:request(url, {
      options={
        method = 'POST',
        headers = headers,
        data = json.encode(body),
        timeout = 5000
      },
     success = function(response) 
                print(response.status)
                print(response.data)
        end,
        error = function(message)
                print("error:", message)
        end
    })

     

    The only thing left is to make a personalkey on the website of Tedee. You can create an personal API key there. 
     

    Edited by Nyko
    Link to comment
    Share on other sites

    Join the conversation

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

    Guest
    Reply to this topic...

    ×   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...