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

Notify me alexa integration HC3


Question

Posted

Hello everyone,

 

Recently i bought the home center 3. Now I would like to send a notification via a lua action and notify me to my echo dot 3.

Can someone explain to me how to do this? your help is greatly appreciated!

 

Best regards,

Dennis

10 answers to this question

Recommended Posts

  • 0
Posted

if you would like an announcement through the echo dot then you would need to get a 3rd party bridge device eg Skaro Automation Bridge.

It cannot do it natively.

 

If you are wanting to control the HC3 using echo then just add the skill from amazon and it will work.

  • 0
Posted

HC3 can work with https isn't it?
Sure that someone can convert below php script (running on my raspberry) to lua on HC3.
This will send a message, set in variable, to the 'notify me' skill which you need to install.

In case you want announcement (with notify me, you only get alert on Alexa after which you need to give command to listen to the notification), where Alexa is talking without a speech command, that's a whole other story.
 

Please login or register to see this spoiler.

 

  • 0
Posted

sorry mate, this is beyond my capabilities.... there are a good few members on here where coding comes naturally.

hopefully they can respond

  • 0
  • Inquirer
  • Posted

    Thanks for your reply!

     

    I have a solution that works for me. I have made a quick app, type: binary switch. 

     

    this is the code i used:

     

    -----------------------------

    function QuickApp:turnOn()
     
      local http = net.HTTPClient()
        local address = "https://api.notifymyecho.com/v1/NotifyMe?notification=Hello%20world&accessCode=<ACCCES_CODE>"
        http:request(address, {
            options={
                headers = {['Accept'] = "application/json", ['Connection']='keep-alive',['Content-Type']='application/json' },
                method = 'GET',
                timeout = 3000 
             
            },
            success = function(response)
                data = json.decode(response.data)
                if data.status == "Success" then
                   self:trace("Success")
                end
            end,
            error = function(error)
                self:debug('error: ' .. json.encode(error))
            end
        }) 
    end
     
    function QuickApp:turnOff()
        self:debug("binary switch turned off")
        self:updateProperty("value"false)    
    end
     
    function QuickApp:onInit()
        self:debug("onInit")
    end
    --------------------------------------------
     
    After this is made a block scene: for example if the light turned on then this binary switch turned on. Now when the light switch turned on, alex got a notification "Hello Word" .
     
    It works for me, but maybe some people know better solutions when you use a quick app?
    • 0
  • Inquirer
  • Posted (edited)

    Hi,you have only to replace <ACCESS_CODE> to you’re personal access code you get when you installed notify me on you’re amazon dot echo.

     

    And you have to replace hello%20world to you’re own notification message.

    Edited by Dennis Hanstede
    • 0
    Posted

    I'm sorry, what access code would this be? is not the login and password to access the Alexa APP? do i need to install something? thankful

    • 0
  • Inquirer
  • Posted

    When you install the skill “notify me” on you’re amazon echo, you get the access code by mail. You have to paste that code in <ACCESS_CODE>. 

    More info: 

    Please login or register to see this link.

     

    • 0
    Posted
    On 11/6/2020 at 9:18 PM, Dennis Hanstede said:

    When you install the skill “notify me” on you’re amazon echo, you get the access code by mail. You have to paste that code in <ACCESS_CODE>. 

    More info: 

    Please login or register to see this link.

     

     

    On my echo show, it shows as a toast msg. By any chance, do you know how alexa could speak this instead of the visual msg ?

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