'Dromotica' app for controlling Domoticz from Android

Moderator: leecollings

User avatar
RoadXY
Posts: 278
Joined: Monday 07 April 2014 12:50
Target OS: Raspberry Pi / ODroid
Domoticz version: 2.2331
Location: Near Gorinchem
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by RoadXY »

I see.
Open the drawer on the left by swiping from the left side of the screen.
Select preferences by swiping the drawer up.
fantom
Posts: 269
Joined: Thursday 26 March 2015 10:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Poland
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by fantom »

Thanks :) It is not very intuitive, and this menu button is very small.

But after few minutes and some togle switch, domoticz stopped response (or crashed). I will look for why.

Fantom
moorken
Posts: 1
Joined: Sunday 14 June 2015 21:05
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by moorken »

fantom wrote:Thanks :) It is not very intuitive, and this menu button is very small.
indeed, it can use some improvements, but its a nice start!
racy
Posts: 3
Joined: Monday 27 April 2015 2:41
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by racy »

racy wrote:I'd like to use an existing apache install to frontend (reverse proxy) my raspberry pi Domoticz install. As such, I've added the following apache config:

<Location /domoticz/>
ProxyPass http://192.168.1.109:8080/
</Location>

And configured the app as follows:
Domotics URL: fqdn.com/domoticz
Domoticz port: 443
Secure? Secure

When try to use the app, it appends the port after the /domoticz URI...

[26/Apr/2015:20:27:58 -0400] "GET /domoticz:443/json.htm?type=scenes HTTP/1.1" 404 4265 "-" "-"

Would it be possible to logic to add the port before the first / OR to give an optional URI?
For anybody else trying to do this, I realized I could do it with mod_rewrite:

Code: Select all

<Directory /var/www/html/domoticz>
    RewriteEngine on
    RewriteBase "/domoticz/"
    RewriteRule "^:443/(.*)$" "http://192.168.1.109:8080/$1" [P]
</Directory>
Justintime
Posts: 228
Joined: Thursday 21 May 2015 9:08
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by Justintime »

Is this app still under development? I really would like to arrange to sequence of the devices.
User avatar
RoadXY
Posts: 278
Joined: Monday 07 April 2014 12:50
Target OS: Raspberry Pi / ODroid
Domoticz version: 2.2331
Location: Near Gorinchem
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by RoadXY »

Every now and then there is a update.
Not weekly or something like that.
dospider
Posts: 15
Joined: Monday 04 August 2014 18:43
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Netherlands
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by dospider »

Hello,

My dromotica doesn't refresh. I can't use it now because it loses the contact ill think.
Anybody an idea how to fix it
User avatar
RoadXY
Posts: 278
Joined: Monday 07 April 2014 12:50
Target OS: Raspberry Pi / ODroid
Domoticz version: 2.2331
Location: Near Gorinchem
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by RoadXY »

Please read the previous messages to see if your solution is mentioned
sundberg84
Posts: 52
Joined: Sunday 17 May 2015 11:20
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Sweden
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by sundberg84 »

Hi!

Great app - Love it!
Some questions:

1) How do i set securitystatus to disarm/arm home/arm away with geofence? I only see on/off.
2) Using the securitypanel works great in the Switches tap, but remains hidden (Data below does not move down) in the dashboard tab.

Im using a Sony Xperia and latest stable Domoticz.
Controller: Domoticz (Raspberry PI)
Gateways: MySensors (Ethernet W5100), RFLink
sundberg84
Posts: 52
Joined: Sunday 17 May 2015 11:20
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Sweden
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by sundberg84 »

Im having a hard time getting geofence to work :(

-I have sucessfully added a geofence with 150m radius.
-Google Location Service activated.

Sometimes, IF i unlock screen and open dromotica it works, but sometimes i have to also open maps or another app to "reload" right location lat/long.
If the screen is locked, nothing happens for atleast several minutes.

Either its location lat/long that isnt updated fast enough or dromotica doesnt update fast enough.
When i come home i enter my wifi which should reload/set my location within 20m but its hard to doublecheck since when i open an app to check my location, it also updates the location.

Any ideas?
For a future request i would like to have dromotica check for a wifi connection, If [wifi] = present then sendaction end if :)

Thank you for a great app.
Controller: Domoticz (Raspberry PI)
Gateways: MySensors (Ethernet W5100), RFLink
Bastien
Posts: 10
Joined: Friday 31 July 2015 10:12
Target OS: Windows
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by Bastien »

Hi,

I've tried NFC with Dromotica and I get some trouble with scene. Indeed I can turn off switches using NFC tag, but when I want to do the same with groups or scenes it doesn't work...whereas I have the confirmation message that tag has been written.

Any idea ?

great app by the way !

PS : is there any chance to see Dromotica in IFTTT, it would be awesome !!:D

Regards
User avatar
RoadXY
Posts: 278
Joined: Monday 07 April 2014 12:50
Target OS: Raspberry Pi / ODroid
Domoticz version: 2.2331
Location: Near Gorinchem
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by RoadXY »

For integration with IFTTT (now called IF) Domoticz should support it, not the Android app.
lucalg
Posts: 8
Joined: Monday 31 August 2015 17:24
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by lucalg »

sebas wrote:
Blueone wrote:Thanks a lot! the dimmers are working now.

What can you do with the NFC tag function and how to use it?
With NFC you can use NFC tags to control switches or scenes. I've put a nfc sticker tag on my staircase that will switch off all the lights and equipment in my living room and a sticker in my garden shed that will toggle the lights in my house. So instead of starting the app and then selecting the correct scene I just tap my phone to the tag. Without a rooted phone you will need to unlock your phone before it works so it works best with a rooted phone.

I'll write a more detailed post about it soon.
Ciao, i am loosing my health trying to configure nfc tag reader in domoticz. Some hardware issue in the start, now solved. I can see tags using nfc-poll but no idea to make the reader in domoticz. Please can you tell me how do you have placed nfc on?
Tnx
Luca
Agrajag
Posts: 2
Joined: Wednesday 28 October 2015 6:31
Target OS: Linux
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by Agrajag »

G'day, thanks for the great app. I am trying to add a switch widget, however when I add it and the popup comes up to configure, there are no switches available for me to choose. When I open the app I see my switch on the dashboard and under the switches menu. Any idea why I can't add it as a widget?
Jan-
Posts: 17
Joined: Saturday 08 February 2014 13:57
Target OS: Windows
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by Jan- »

Hello good afternoon,

Is the app still under development?

There are some issues:

- When you start the app you don't receive always data. You have to restart the app again.
- The energy consumption is not correct using solar panels. It must be possible to receive figures below zero.
- When using the option to select a camera the app crashed (onePlus one phone). Send the crash reports several times to Google.

Suggestions:
- Please implement in the devices tab a fast option to select a room, with many devices the list is to long.



Regards,
Jan.
abductor
Posts: 10
Joined: Tuesday 03 November 2015 18:32
Target OS: -
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by abductor »

sundberg84 wrote:Hi!

Great app - Love it!
Some questions:

1) How do i set securitystatus to disarm/arm home/arm away with geofence? I only see on/off.
2) Using the securitypanel works great in the Switches tap, but remains hidden (Data below does not move down) in the dashboard tab.

Im using a Sony Xperia and latest stable Domoticz.
Did you get your issue(s) resolved? I have the same problems. Don't like waiting for loading screen when I come home and want to disarm the alarms. Thanks!
abductor
Posts: 10
Joined: Tuesday 03 November 2015 18:32
Target OS: -
Domoticz version:
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by abductor »

abductor wrote:
sundberg84 wrote:Hi!

Great app - Love it!
Some questions:

1) How do i set securitystatus to disarm/arm home/arm away with geofence? I only see on/off.
2) Using the securitypanel works great in the Switches tap, but remains hidden (Data below does not move down) in the dashboard tab.

Im using a Sony Xperia and latest stable Domoticz.
Did you get your issue(s) resolved? I have the same problems. Don't like waiting for loading screen when I come home and want to disarm the alarms. Thanks!
I sort of resolved it by adding a virtual Switch and use that instead of the security panel for widget and switch screen. I set the switch to turn back off if its turned off after 3 mins.

I also AND all my security statements with that virtual switch, so when I turn that switch off, it turns off my alarms. This is great for when I come home and want to enter from the garage, it'll turn off the alarm for 3 mins, enough time to get inside and I dont have to waste time to input the code.

The virtual switch is called MasterGarageAlarmSW in my example. I have a door sensor called GarageDoorTested.
Attachments
Security system for garage door
Security system for garage door
blockSecurityExample.png (35.93 KiB) Viewed 6497 times
Example of a switch that turns back on after 3 mins.
Example of a switch that turns back on after 3 mins.
blockSecurityExampleSWAlwaysOn.png (26.41 KiB) Viewed 6497 times
wmn79
Posts: 27
Joined: Monday 13 April 2015 23:19
Target OS: NAS (Synology & others)
Domoticz version: 3.5033
Location: Amsterdam, The Netherlands
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by wmn79 »

Does anybody know if it is possible to add two "Local Wifi SSID"'s or if I can use a wildcard in the SSID name? I have both a 2,4 and a 5GHZ Wifi with a different SSID (the last SSID is only different from the first in that it is ending on -5G). So Dromotica only works if I am connected to the one I have marked in the settings and I would really like have it working with both SSID's.
User avatar
RoadXY
Posts: 278
Joined: Monday 07 April 2014 12:50
Target OS: Raspberry Pi / ODroid
Domoticz version: 2.2331
Location: Near Gorinchem
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by RoadXY »

Not possible. The new Domoticz app will support unlimited SSID selection however
rjobaan
Posts: 21
Joined: Sunday 06 December 2015 21:33
Target OS: Raspberry Pi / ODroid
Domoticz version: 2022.1
Contact:

Re: 'Dromotica' app for controlling Domoticz from Android

Post by rjobaan »

How can I add my remote settings? what do I need to set up?
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests