Okay, to make sure we don’t confuse the future users of 3house I installed the app again:
It works fine, locally and also with my.openhab.
Settings:
Server: leave blank or choose any name you want
Openhab Server: http://your_local_ip:8080
Remote: https://my.openhab.org/
Account: your my.openhab username
Password: your my.openhab password
@clach04 - Interesting. I don’t have either of those issues with the native Android App. What version of Android are you running? Do you have the latest version of the OpenHAB app? And, are you doing any “fancy tricks” with your sitemap?
Maybe? I downloaded from Play Store a few days ago, version 1.7.0.1, updated May 27, 2015.
Other than repeating a group with a frame so it displays in HABDroid I don’t think so BUT I could be wrong Copy/paste below.
sitemaps/default.sitemap
This shows the problem with X10 only showing up under the “X10 for Android”
sitemap house label="My House"
{
/*
** ForAndroid is for the official Android OpenHAB client, HABDroid as of 2016-01-03
** https://github.com/openhab/openhab/wiki/HABDroid
**
** This is *NOT* needed for https://github.com/ibaton/3House
*/
Frame label="ForAndroid" {
Text label="X10 For Android" icon="chart" {
Frame label="Binary Widgets" {
Switch item=entry_hall
Switch item=lounge_uprights
Switch item=moon
}
}
}
Frame label="X10" {
Frame label="Lights" {
Switch item=entry_hall
Switch item=lounge_uprights
Switch item=moon
Switch item=all_off
}
}
}
sitemaps/ct50.sitemap
This has a problem with “Set target Heating temp”, the text gets masked by the -/+ buttons and digits.
Heating program mode at the bottom also looks ugly.
3House does a better job at making this easy to read/control.
/*
** Sitemap for WiFi Radio Thermostat CT50 3M-50
** See https://github.com/openhab/openhab/wiki/Explanation-of-Sitemaps
*/
sitemap house label="CT50 Thermostat"
{
Frame label="Thermostat" {
Text item=ThermDayTime
/*
Text item=ThermDay
Text item=ThermTime
*/
Text item=ThermCurrentTemp
Text item=ThermTargetHeatTemp
Text item=ThermMode
Text item=ThermOverride
Text item=ThermState
Text item=ThermFanMode
Text item=ThermFanState
Setpoint item=ThermTargetHeatTemp label="Set target Heating temperature [%d F]" icon="temperature" step=1
Switch item=SetHeat70FTemp mappings=[ON="70"]
Switch item=SetHeat55FTemp mappings=[ON="55"]
Switch item=ThermFanMode label="Fan" icon="settings" mappings=[0="Auto(Off)", 2="On"]
Switch item=ThermMode mappings=[0="Off", 1="Heat", 2="Cool", 3="Auto"]
}
}