IR Transmitter

Hi.

Now i control most of the light and Sonos with OpenHAB.

Now I want to control my TV. My Samsung is to new for the binding and my Panasonic is to old.

So now I need an IR Transmitter that works with OpenHAB.

Can someone give me recommendations of a working IR transmitter.

/mike

Logitech harmony hub

2 Likes

Yes, Logitech Harmony Hub will do it perfectly - there’s a binding for it.

By the way: I don’t step behind the sonos config in openhab - would you mind send me your configs for sonos?
(v.bernd AT gmx.at)

Oh great… I was looking for an ir transmitter too… What openhab version is the binding available for?

I use a vanilla 1.7.1 installation augmented with harmony 1.8.0 add-on (https://openhab.ci.cloudbees.com/job/openHAB/)

  • org.openhab.io.harmonyhub-1.8.0-SNAPSHOT.jar
  • org.openhab.binding.harmonyhub-1.8.0-SNAPSHOT.jar
  • org.openhab.action.harmonyhub-1.8.0-SNAPSHOT.jar

Works very well together with Logitech Harmony® Smart Control O-R0004

kind regards,
Patrik

I do not use the sonos binding i am using https://github.com/jishi/node-sonos-http-api with rules.

Item

Switch Sonos_GF_Kitchen “Sonos Kök” (GF_Kitchen, Sonos) { http=“>[ON:GET:http://openhab:5005/kok/play] >[OFF:GET:http://openhab:5005/kok/pause]” }
Number Sonos_GF_Kitchen_channel

Rule

rule “Kitchen Channel”
when
Item Sonos_GF_Kitchen_channel received command
then

if (receivedCommand==1) { 
  sendHttpGetRequest("http://openhab:5005/kok/volume/20")
  sendHttpGetRequest("http://openhab:5005/kok/favorite/Rix%20FM")
    postUpdate(Sonos_GF_Kitchen, ON)
}
if (receivedCommand==2) {
  sendHttpGetRequest("http://openhab:5005/kok/volume/20")
  sendHttpGetRequest("http://openhab:5005/kok/favorite/Top%20Tracks%20in%20Sweden")
    sendHttpGetRequest("http://openhab:5005/kok/repeat/on")	
    postUpdate(Sonos_GF_Kitchen, ON)
}

if (receivedCommand==0) {
sendHttpGetRequest(“http://openhab:5005/kok/pause”)
postUpdate(Sonos_GF_Kitchen, OFF)
}

end

Sitemap

Selection item=Sonos_GF_Kitchen_channel label=“Sonos Kitchen Channel” icon=“radio” mappings=[1=“Rix FM”, 2=“Top Tracks”, 0=Av]

/Mike