Harmony Hub 2.0 binding - Button Press - how?

Hi.
My items, things are discovered. But if run test rule nothing happened.
I see debug message, but no HurmonyHub reaction (led not blink).
Harmony_Activity - is showing right status.
Where is error?

Switch	Test
String	Harmony_Activity		"Activity" <television>	(gRemotes)	{ channel="harmonyhub:hub:HarmonyHub:currentActivity" }
										// This line i copy from thing channel, from paper ui
String	Harmony_Beeline			"Beeline" <television>	(gRemotes)	{ channel="harmonyhub:device:HarmonyHub:27762098:buttonPress" }

Rules:

rule "test"
when
	Item Test received command ON
then
	logWarn ("        TEST", "harmonyPressButton" )
	Harmony_Beeline.sendCommand("2")
end 

You don’t show the definition for your Tesst Item. Is there a typo with that second “s” in the name or do you define it with “ss” in your Items file too?

Its ok with test rule, i see logdebug “TEST” in log. I change my first post.

Please help me.

Hi

I did a little test with my Tv box and found it to work with one thing to keep in mind.

My rule file:

// Imports
import org.openhab.core.library.types.*
import org.openhab.core.persistence.*
import org.openhab.model.script.actions.*

// Global Variables

rule “Movement”
when
Item Dumma received update killer
then
PaceDVR_ButtonPress.sendCommand(“4”)
end

I also tested it from the Karaf console

openhab> smarthome:send PaceDVR_ButtonPress 4

The thing to keep in mind (in my case) is that I can’t set it to channel 40 without having to send first the 4 command and then the 0 command.

Regards
Lejonpart