Skip to content

Hardware

Hardware related - Small board computer to IP Camera and technologies like Zigbee or Zwave!

183 Topics 2.0k Posts

Subcategories


  • Camera integration into your home automation

    9 Topics
    122 Posts
    R

    BTW I found out that the Google also a new API for their cameras. Has anyone tried to integrate the Nest Doorbell (or another Nest cam) in openluup?

  • Single board computer, like raspberry pi, pine64. The heart of your system!

    11 Topics
    64 Posts
    toggledbitsT

    Going OT here a bit... I just posted benchmarks for RPi 4 maker board and Compute Module

  • 1 Topics
    6 Posts
    LibraSunL

    Only took me 7 months (plus one productive morning!) to fix. Turned out not to be a Sonos problem, but will leave here under Hardware > Sonos just in case others find themselves similarly afflicted.

  • Discuss your vera problems and findings here

    58 Topics
    858 Posts
    A

    The code in your link was messed up when they updated that forum some years ago. I've rehashed it to give it a chance of working but I suspect you may still have trouble getting it to work. Running it in the Lua test window would be your starting point after reading the
    push over api doco.

    Another alternative is to use Telegram with the Telegram plugin.

    -- Refer to pushover documentation: -- https://pushover.net/api local pushToken = "YourPushOverTokenHere" local pushUser = "YourPushOverUserCodeHere" local pushTitle = "MessageTitle" local pushMessage = "MessageContent" local snapshotFile = "/tmp/camera_snapshot.jpg" local pushPriority = "1" -- Sound could be: pushover bike bugle, cash register, classical, cosmic, falling, -- gamelan, intermission, magic, mechanical, pianobar, siren, spacealarm, tugboat, -- alien, climb, persistent, echo, updown, none local pushSound = "gamelan" -- Link to the BlueIris videostream of that camera local pushUrl = "http://xxx.xxx.xxx.xxx/mjpg/ShortCamName&user=XXX&pw=XXX" local pushUrlTitle = "Camera Name" -- This points to one of my BlueIris managed cameras local camera = "http://xxx.xxx.xxx.xxx/image/ShortCamName?q=50&s=80&user=XXX&pw=XXX" -- Get the snapshot from the camera local out = assert(io.open(snapshotFile, "wb")) local _,data = luup.inet.wget(camera) out:write(data) assert(out:close()) --Send PushOver request local curlCommandTab = {} table.insert (curlCommandTab, 'curl -s') table.insert (curlCommandTab, '-F "token=' ..pushToken ..'"') table.insert (curlCommandTab, '-F "user=' ..pushUser ..'"') table.insert (curlCommandTab, '-F "title=' ..pushTitle ..'"') table.insert (curlCommandTab, '-F "message=' ..pushMessage ..'"') table.insert (curlCommandTab, '-F attachment=@' ..snapshotFile ..'"') table.insert (curlCommandTab, '-F "sound=' ..pushSound ..'"') table.insert (curlCommandTab, '-F "priority=' ..pushPriority ..'"') table.insert (curlCommandTab, '-F "url=' ..pushUrl ..'"') table.insert (curlCommandTab, '-F "url_title=' ..pushUrlTitle ..'"') -- The .json suffix requests that the response be in JSON format table.insert (curlCommandTab, 'https://api.pushover.net/1/messages.json') local curlCommand = table.concat (curlCommandTab, ' ') print(curlCommand) local handle = io.popen(curlCommand) local result = handle:read("*a") handle:close() print (result) -- Delete temporary snapshot os.remove (snapshotFile)
  • Discuss device integration and use

    9 Topics
    34 Posts
    G

    To manage high temperatures (600°C) with Zigbee and Sonoff iHost, you can use a high-temperature thermocouple (like a K-type) with a MAX31855 or MAX6675 converter. Then, connect it to an ESP8266/ESP32 microcontroller with a Zigbee module (like Sonoff Zigbee). This way, you can read the temperature and integrate it into your automation stack via MQTT or HTTP.

  • The alternative zwave controller

    38 Topics
    456 Posts
    H

    I'll answer my own question for others benefit. I was able to successfully upgrade UZB from firmware 5.34 to 5.39 using Z-Way server and the all token to first downgrade and then upgrade following this path.

    5.34 → 5.33 → 5.27 → 5.36 → 5.39

    My bootloader version is 40196 and I did not upgrade the bootloader along the way, I started and ended with the same bootloader.

    I did a ResetAPI followed by a ControllerReset after each firmware downgrade/upgrade to ensure that I had a clean start. I also disabled all zwave device (unplugged/removed batteries) to ensure that any stray packets didn't interfere with the process. Be sure to backup your configuration/network before updating the firmware.

    After upgrading to 5.39 I'm now able to use the promiscuous mode in Z-Way zniffer to capture packets on the network (although it misses some packets)

    I did get a note from support, so those with firmware under 5.24 may want to pay heed to this.

    there is a batch of sticks with "dead-end" firmware and a slightly modified board topology. But given the fact that such sticks are usually impossible to upgrade above version 5.24, then you most likely have a good stick for which this operation will be possible.

  • Z-Uno is the first and only easy to use developer board that allows you to create your own Z-Wave device without deep knowledge of Z-Wave protocol or programming. Z-Uno is a mix of Z-Wave home automation radio protocol power and Arduino simplicity.

    1 Topics
    3 Posts
    I

    These are great not just for sensors, but also to ZWave-ify existing equipment in cases where a simple dry relay ZWave switch won't cut it. I had a few motorized transom windows with IR remotes, that can also be controlled through some weird industrial serial protocol. I build controllers for them using ZUNO boards, so I can now control the windows through OpenLuup.

  • GE/Jasco Z-wave wall switch

    14
    0 Votes
    14 Posts
    785 Views
    3

    I had one of my ZW+ switches go out on my over the weekend. Called Jasco in Atlanta and learned that they extended the warranty to 5 years. I have 3 new switches coming my way. Wish I knew this 7 or 8 switches ago that went to eWaste.

  • P1 electrical smart meter reader

    8
    2 Votes
    8 Posts
    2k Views
    A

    A small status update on the smart meter reading project.

    I have been running the solution above together with OpenLuup and Grafana and in general it works nicely. It has crashed on a few occations, not sure why.

    This week I decided to test Home Assistant just to see how it works. When up and running I thought I could just as well try playing around a bit with the P1 meter reporting also.

    I managed to set up Home Assistant to use the Mqtt broker on OpenLuup by adding this into the Configuration.yaml:

    mqtt: broker: ipaddress port: 1883 username: user password: passwd

    After restarting HA it is easy to check that it works by going to the Mqtt integration where it you can listen to topics and publish packets on the server. Use MqttExplorer to see what happens on the server.

    Next step is to add the sensors for the P1 meter data into the Configuration.yaml file, just to copy-paste from the github repo. To keep down the load I only added the sensors I use.
    Then just create graphs etc on the dashboard.
    0c431b29-f27c-4979-b598-88394a964d7f-bild.png

    Since I had HA up and running I also decided to try out an ESPHome solution that is very popular in Sweden. I managed to install this on my second ESP and when connected to the meter it imediately started to report data into HA. No configuration required for this one, all sensors are added automatically, nice. 🙂

    Next thing I wanted to test was the HA integration for grabbing hourly prices from Nordpool.
    For this I discovered I needed to set up "HACS", a good instruction is here.

    With this in place just add the Nordpool integration and restart.

    Next step how to get some nice graphs? I found a good guide here.

    9f1de0fe-0fac-4b39-b9ee-5bbe082ff070-bild.png

    We will see what solution I will use, one possibility is to run both ESP's via a splitter on the meter.

  • Random on/off smart bulb behavior?

    12
    0 Votes
    12 Posts
    999 Views
    N

    Didn't see this mentioned, but move the Kasa bulb to a different wifi SSID. Try it on a guest network. I've had problems with a thermostat in the past that required an SSID change every so often.
    And is this the same router all this time? My Asus router started having oddities in the 2.4Ghz band requiring me to setup a separate gateway. It was the beginning of the end for that router.

  • IR to IR transmitter

    7
    0 Votes
    7 Posts
    333 Views
    CatmanV2C

    Per the docs you can quite simply do it across the internet, which is a bit of a bizarre concept.

    I find myself wondering now if you couldn't packet sniff the stream and then do all the control of any device by a network type command. Effectively giving IP control over any device.

    But there's probably simpler ways

    C

  • Nest thermostat alternative...

    13
    0 Votes
    13 Posts
    424 Views
    parkercP

    @catmanv2 said in Nest thermostat alternative...:

    I have a Secure unit and boiler control.

    Ditto.. Although mine is badged Hortsmann

    APNT-20 - Configuring the Secure Thermostat and Receiver
  • Xiaomi Platform Integration

    21
    0 Votes
    21 Posts
    1k Views
    rafale77R

    That thing is super sensitive. I was having a glass of wine and just leaving the glass next to it made it turn red and set an alarm for high VOC... It could be used as a breathalizer...

  • Dumb question about bulbs

    13
    0 Votes
    13 Posts
    403 Views
    CatmanV2C

    @black-cat No that's helpful thanks.

    I shall grab one. I need a new light fitting anyway so probably some kind of connector

    Thanks

    C

  • Tinkering with Tasmota sensors

    30
    1 Votes
    30 Posts
    4k Views
    CrilleC

    @archers This is perfect for our greenhouse I'm building right now!
    I ordered a Sonoff Dual R3 for heating/cooling fan and lightning control, temp/humidity sensor for visual display and automation/remote readings and a couple of Mi Flora to feed info in to the irrigation system, thanks for sharing!

  • Shelly 1 as doorbell sensor/opener

    3
    2 Votes
    3 Posts
    2k Views
    akbooerA

    Just bought a Shelly Button 1. These things are tiny, and absolutely beautiful. Trying this out as a remote switch stuck to the wall in a place where I simply can't get any power line and use a regular Shelly ix3.

  • Secure/Horstmann thermostat/zway

    8
    0 Votes
    8 Posts
    293 Views
    CatmanV2C

    For me the button does nothing. Very odd. Not sure why you're getting this issue 😞

    C

  • Matrix Creator

    4
    1 Votes
    4 Posts
    259 Views
    rafale77R

    I am curious as to how Rhasspy works out for you as I have been watching it myself. I have just been very reluctant to DIY these...

  • Another device bites the dust

    2
    0 Votes
    2 Posts
    130 Views
    ElcidE

    It's not fully dead, you could repurpose the other 2 channels,. Maybe 2 one colour strips

  • Wall mount tablet plug-in

    10
    5 Votes
    10 Posts
    489 Views
    C

    I'm doing something similar. Using FullyKiosk, TheHomeRemote and Dakboard running on a Kindle FIre 8HD. Using a MakesByMike mount as well. My wife let me "upgrade" our wall decor to be a bit more functional 😁

    IMG_1034.jpg

  • Batteries options...

    2
    0 Votes
    2 Posts
    117 Views
    MatohlM

    Yes, I have used similar of these >10 for different appliances this winter for decoration

  • Someone got a Nuki Bridge+Door lock?

    1
    0 Votes
    1 Posts
    105 Views
    No one has replied
  • Using a Shelly Button1 as car presence sensor

    4
    3 Votes
    4 Posts
    877 Views
    rafale77R

    @sender

    It's a bit smarter than that... it requires other conditions to be met... like having broken geofence within a certain time and not having open any door yet.

  • TRVs and heating

    7
    0 Votes
    7 Posts
    313 Views
    CatmanV2C

    OK I shall look into that. Thanks, all!

    C

  • Second-hand Vera Edge/Plus in Europe

    4
    0 Votes
    4 Posts
    198 Views
    therealdbT

    Unfortunately brexit will affect shipments. But I found someone on eBay selling the plus in Italy new for 80 bucks, I’ll order one later today. Thanks!

  • Inovelli

    1
    0 Votes
    1 Posts
    154 Views
    No one has replied
  • Twinkly Christmas tree lights with openLuup/Vera

    3
    1 Votes
    3 Posts
    340 Views
    therealdbT

    I’m trying to figure it out how to send playlists. On/off, status and brightness are working. I just need a couple of more days and I’ll release it.

Recent Topics