General Discussion

A place to talk about whatever you want

167 Topics 1.6k Posts
  • Alexa TTS is sloooooooow

    35
    0 Votes
    35 Posts
    1k Views

    Glad to hear! I am finding it quite bold that they are pushing this enabled this by default. Also it is not quite ready yet as they will be pushing the firmware updates. Just wanted to make sure you are aware.

  • Security exposure with internet connected homes

    16
    2 Votes
    16 Posts
    707 Views

    Could be a bizarre follow up to a post I made on another thread but it may be more related to this topic so I am posting here. Oddly things are unraveling... It is confirming my own observations that Android devices seem to send a lot of data, a lot more than iOS devices even when you don't them to. This is odd because of how hit and miss geofence on android has been yet I am observing that they update Google about where your device is a lot more frequently and with a lot more "details" than iOS devices do.

    'Apple is eating our lunch': Google employees admit in lawsuit that the company made it nearly impossible for users to keep their location private | Business Insider India 'Apple is eating our lunch': Google employees admit in lawsuit that the company made it nearly impossible for users to keep their location private | Business Insider India

    Google misled phone makers into hiding privacy settings users liked in order to collect more location data, according to newly unredacted documents.

  • Alexa TTS troubleshooting

    6
    0 Votes
    6 Posts
    271 Views

    I'm back to testing Vera Alexa (now rev. 0.97) and thus far no improvement. 99% silence despite being correctly configured.
    Here's a data point to mull over:

    luup.call_action("urn:bochicchio-com:serviceId:VeraAlexa1","RunCommand",{Command='-e weather -d "Living Room"'}, 366)

    yields this LatestResponse on Vera:

    sending cmd:weather to dev:Living Room type:A15ERDAKK5HQQG serial:eb48978706f5459f890ef0ec5aa9fce9 customerid:A3SL3Z0HELH3YG

    and this in Vera's LuaUPnP Log (among other lines):

    Device_Variable::m_szValue_set device: 366 service: urn:bochicchio-com:serviceId:VeraAlexa1 variable: LatestResponse was: ERROR: unknown option weather /storage/alexa/alexa_remote_control.sh [-d <device>|ALL] .......
  • Arduino to make a weather station

    1
    5 Votes
    1 Posts
    107 Views
    No one has replied
  • CORE by Oh-La LABS

    4
    1 Votes
    4 Posts
    301 Views

    This is also how the Dutch Homey (https://homey.app/en-us/) started. It took them a good three years to get to a 'good' system. If Ezlo falls through, it is my backup plan.

  • 0 Votes
    6 Posts
    503 Views

    That's right. When you begin a new topic you don't get any formatting tools for some reason. That's why I always start with a basic introduction paragraph and then do the meat and potatoes in the subsequent replies.

  • New Ezlo Web GUI now in "beta"

    21
    0 Votes
    21 Posts
    1k Views

    Funny timing. SmartThings opened up their Beta portal just a couple days ago as well. It's been limited for 2 years to only a handful of users until now.

  • 0 Votes
    6 Posts
    280 Views

    Sorted ! - thanks again @therealdb , I had to break it up over two functions in the end - but it works a treat ! 🙂

    luup.register_handler("rununfiwattagereport","unifi") function UnifiControllerPoE() local unifi_username = "vera" local unifi_password = "vera" local unifi_controller_ip = "192.168.102.207" local unifi_controller_port = "8443" local cookie = "/tmp/unifi_cookie_lua" -- Temp cookie file local tempfilename = "/tmp/UnifiController.tmp" -- Temp JSON output file local device = 'api/s/default/stat/device' local f = io.popen("stat -c %Y " .. tempfilename) local last_modified = f:read() --if (os.difftime (os.time(), last_modified) > 30) then -- URL for logging in, query and logging out url_login = 'curl --cookie ' .. cookie .. ' --cookie-jar ' .. cookie .. ' --insecure -H \'Content-Type: application/json\' -X POST -d \'{"password":"' .. unifi_password .. '","username":"' .. unifi_username .. '"}\' https://' .. unifi_controller_ip .. ':' .. unifi_controller_port .. '/api/login' url_open = 'curl --cookie ' .. cookie .. ' --cookie-jar ' .. cookie .. ' --insecure -s -o '..tempfilename..' --data "json={}" https://' .. unifi_controller_ip .. ':' .. unifi_controller_port .. '/' ..device url_logout = 'curl --cookie ' .. cookie .. ' --cookie-jar ' .. cookie .. ' --insecure https://' .. unifi_controller_ip .. ':' .. unifi_controller_port .. '/logout' -- Execute url -- Execute url read_login = os.execute(url_login) read_open = os.execute(url_open) read_logout = os.execute(url_logout) local line local file = io.open(tempfilename, "r") if file then line = file:read("*a") file:close() end return line end function rununfiwattagereport() local readings = {} local total = 0 local json = require "dkjson" local u = json.decode( UnifiControllerPoE() ) --print('\n') for key,value in ipairs( u.data ) do for n, p in ipairs( value.port_table ) do --print('\t'.. tostring(p.port_idx), p.poe_enable, tonumber(p.poe_power)) -- print(p.port_idx) table.insert( readings, { value.name, tonumber(p.poe_power)}) -- populate readings table end end for _, reading in ipairs(readings) do local Variable = reading[1] local Value = reading[2] or 0 total = total + Value if Value ~= 0 then --print(Variable.. " - ".. Value, total) end end print("Total watts = " ..total) local html = "<html><head>" .. "</head>" .. "<body>" .. "<b>" .. tostring(total) .. '</b>' .. "</body></html>" return html, "text/html" end
  • Caller ID in HA workflow

    8
    0 Votes
    8 Posts
    333 Views

    @librasun said in Caller ID in HA workflow:

    . But you bring up an interesting point, @parkerc ... I've never seen "Lua" among the languages they offer, lol!

    Exactly !, I noticed that too, no one seems to promote Lua

    @librasun said in Caller ID in HA workflow:

    Nice to see you rolling your own. And if it works, perhaps send the company a copy for them to add to their library?

    It took me a while to just get that working, I don’t think those types of companies will want to use my pieced together bits of code 🙂

  • Apple Homepod mini

    62
    0 Votes
    62 Posts
    5k Views

    My Homepod mini arrived today. Very slick setup using an iPad. Happily discovered the Homebridge running in my Synology Docker, and all the configured devices (including my new Shelly Button 1!)

    The revelation here is that the Homepod solves the remote access issue for openLuup, in that all the devices exposed (via MQTT) to the Homebridge are fully functional.

    Love it! Thanks for the initial recommendation @rafale77 .

  • Recover an ‘assumed bricked’ Vera Secure

    45
    0 Votes
    45 Posts
    4k Views

    Thanks @rafale77

    I’ll admit it feels like a bit of a waste not to be able to make use of it all - but you make a very good point -

    My next challenge then will be getting your nuke-Vera script onto the controller via the usual/external USB port..

  • ubiquiti breach

    3
    0 Votes
    3 Posts
    204 Views

    As I said, I got exasperated with my unifi system and got rid of it. The wifi products in particular were underwhelming and in spite of some pretty good switches and the pretty interface, overall it was just way too expensive and constraining for the performance it was delivering. The controller was starting to do a lot of things I didn't want it to do and became a hassle. Getting rid of the entire 12 unifi devices was the best thing I did for my network and my WAF since it doubled my wifi bandwidth, saved me a lot of money and freed a lot of my time.

  • 0 Votes
    9 Posts
    434 Views

    FYI I got the RPi 4 with ssd up and running and cloned sd card . Thanx to all!

  • Vera watch variable / startup LUA how ?

    12
    0 Votes
    12 Posts
    553 Views

    Thanks guys that's all working OK now

  • Ezlo to openLuup to Homebridge

    15
    0 Votes
    15 Posts
    539 Views

    Yes, that was it. V2.4 has a fix

  • Incrementing an outside awning with Reactor/MSR

    14
    0 Votes
    14 Posts
    398 Views

    Sounds good. When you figure out what your logic inputs need to be to make it work the way you want, let me know and we can talk about maybe getting those implemented.

  • Need help backing up Raspberry Pi

    21
    0 Votes
    21 Posts
    947 Views

    @black-cat said in Need help backing up Raspberry Pi:

    No, I use Windows.

    Every day's a school day! 🙂

    C

  • My Turn! Suspended at Ezlo Forum

    6
    7 Votes
    6 Posts
    1k Views

    @Tom_D

    ...you certainly are welcome.

  • Voice Control and TTS Projects

    18
    0 Votes
    18 Posts
    627 Views

    OK. And you can probably turn the cache back on as well. I'm betting is just had some cached bad URLs, so before turning it back on, SSH into your Vera and rm -rf /www/sonos/ttscache to clear the cache entirely. It will be recreated as you go.

  • Not so quiet around here :)

    Moved
    37
    5 Votes
    37 Posts
    2k Views

    @cw-kid

    Been trying to refrain myself from replying but here we go...
    Instead of repeating what I have said in the past, my view is that ezlo and its leader have a very different view of the market and possibly do not understand what they bought by merging vera.

    But the basics are:

    "But what can you do. Both sides have done things to upset the other."
    Sorry but one has to put the context as to who is who back in place here. There is no circumstance under which a business owner should ever treat their customers this way. For anyone running a business, if a customer is upset, you should first asking why. Instead the guy keeps doing what upsets his customers and starts insulting and calling them names. That's unprofessional and unheard of.

    "I think he feels you are all against the Ezlo platform and its future success and you just want your Vera firmware as is, to hack."

    Again, instead of feeling this way, he should be asking why? Being the one who tore down the firmware down to the OS level, I think I can speak of it. Certainly "as is" is incorrect. The whys:

    Because it's broken Most of the fixes are trivial They significantly improve the vera They are not fixing it themselves.

    Now on the understanding of this home automation market. If you run a market survey, you will see that the vast majority if not all platforms today rely to various degree on community development of external integration, cloud or local, and run on increasingly more powerful hardware. When they bought vera, they inherited a community, a small remnant of hardcore users who have extended the life of the vera to its limits trying to maintain the platform on par with the competition but still somewhat behind. A large number of people have already jumped ship quietly. The most vocal people on the forum are the most loyal supporters of the platform and many stay because of the technical migration barrier to other platforms. I think we were all excited about the prospective of a new hub and an updated platform. I was all in. There are however two bare minimum critical requirements to a new hub:

    Functional equivalency, including all the integrations the plugins supported An ease of migration from a vera installation to the new hub.

    Sadly what I have observed is a complete disdain of these basic requirements and a development strategy aiming straight down the toilet (excessive focus on mobile app and cloud base processing, disregard of the critical wireless stacks and repeat of past mistakes in conception of the API) while the current product gets increasingly far behind competitive platforms, including open source ones. I kept an open mind, not being an expert on the software side but expressing a lot of concerns. The increasing amount of spamming of the forum with "exciting breakthroughs" and "pure innovations" of things the community has been able to do and better/faster/simpler for years combined with the release of an underwhelming hardware for the new controller, clearly pointing to a focus on minimum cost at the compromise of extendibility and reliability and you can clearly see my disappointment. That was the last straw for me. I predicted last year that the platform would not be ready in a year because of their approach... look at where they are now.
    In the meantime, I have moved my zwave network to z-way. Stunningly, the migration is easier than to go from vera to ezlo and it felt like jumping from the stone age to science fiction. Everything became lighning fast... All my secure class problems and latency issues gone. I can no longer find any unsupported devices... etc... And all of my previous integrations are retained and more. So yeah I can see why he is upset but he can only be so at himself. Taking it out on his most loyal customers is... well you're the judge.

Recent Topics