[APP] [TOOL] Replay.it - Record and replay gestures and button presses (root) - Android Apps and Games

HelloWorld, hope you guys are taking on the Corona crisis safely.
What started off as just means to kill time during the lockdown back here in India, eventually showcased some potential that deemed necessary an XDA post! So here it is, a practically end-to-end Android automation tool that can record and "replay" taps, swipes and programmatic button presses without breaking a sweat.
Check out this YouTube video that demos the project walks you through it with a simple yet cool scenario of automating sending messages on WhatsApp!
WHAT DOES IT NEED?
The whole thing comprises of an Android app as well as a Java command-line program that works across platforms - Windows, MacOS and Linux. It's super portable in that the app goes into your phone and the PC-side tool just needs Java SE installed. In addition, your Android phone must have root access, USB debugging enabled and a data cable for connecting it to your PC (oh yeah, with necessary drivers installed).
Note: If you're planning on just playing around to know how the whole concept of recording and replaying works, neither do you need the Android app nor do you need root. Skip to last section to know more.
WHAT CAN IT DO? - e.g. WhatsApp automation
Without sounding trite, lets understand what it does with just a simple scenario. If you were me, I'm sure it gets insipid sending quotidian morning wishes on WhatsApp, first thing waking up every morning. What if I tell you there's a tool that can watch you unlock your phone, open WhatsApp, open your desired chat, type out a message, send it, close the app and lock the phone all before you even wake up? Enter Replay.it. Jargons aside, with your phone connected to your PC via a data cable, this tool can record taps, swipes, button presses and common actions (both, as keycodes that you can check out here), have them sent over to your phone and have them "replayed" at a scheduled time as set in the Android app. Simply put, the PC-side tool is what watches you / records the way you accomplish a certain action (such as sending a message on WhatsApp) and the Android app is what schedules the replay. If you're in doubt, during replay it virtually looks as though someone invisible is at your phone tapping the screen, scrolling about and typing out text.
UNDER THE HOOD - It's open source
Clearly, the app requires root as injects touch, motion and key events on your behalf that isn't permitted with standard shell access. Technically, everything out here is ADB and you're free to view and contribute to the open source codebase that you can check out here.
FILTHY BUGS - You need to know
No piece of software ever, is bug free and just like that here's a little one. While taps are recorded fine, in order to log a swipe, you make the swipe gesture and once finished, you must tap somewhere on the screen. The trailing tap is what completes a swipe which if is not done, the entire swipe record just performed is lost.
WHERE CAN I GET IT? - Download & play
Okay, less of talk and more of work! Check out this GitHub repo for downloading the latest release and working with it. Finally, do check out the YouTube video demo and show some love!
Hope you guys find this tool useful.
Thanks and take care!

Related

Tick! A convenient timer!

Hi everybody !
After a year of lurking, i've published my first app !
It's called Tick! and it's a simple timer but i've worked hard on making it easy to launch.
Since there is no wheel selector on the sdk, I've developed one to set the number of minutes wanted. With three clicks, you can launch a timer to remaind you that your pastas or your eggs are ready !
Your comments are welcome !
Since I'm new on the forum, I'm currently not allowed to post external links, so if you want to try it, search for Tick! on the market or SlideMe. I will put images, links and QR-Code as soon as i will be allowed !
RabugenTom
Nice app. Any plans on releasing the source
Any chance for an APK for those of us without data?
Nice
Good Work Buddy works perfectly on Xperia X10i
Thanks for the replies ! I've added the apk posted on the market.
I'm working on an improved version !
Agreed, Great work RabugenTom. Love the custom wheel selection.
Have to admit, though, I'm dying to have multiple timers. I'm not sure off the top of my head how they would fit in with your snazzy countdown timeline, but I'm sure it could be done.
+1 for release of the source
Love the app... Mightve been nice if it worked with 30sec increments as well but that might just be me, and there are other more robust timer apps for when you need that i guess.
One thing I noticed though... If the app is open and showing on the screen (IE - not in the background while working on something else or on one of the home screens), Tapping the app notification (in the notifications pane) will "reopen" the apps interface, and this can be done multiple times.
Basically you end up with multiple instances of the same timer... So if youre looking to go back to whatever was open before - home screen or other - by pressing the back button, youll just close the last instance you "opened" via the notification, taking you back to the previous instance of that same timer, and so on until you reach the first one that was opened when you started the app.
It doesnt seem to affect the functionality of the app in any way that ive seen, but it is rather odd.
Sort of like tapping the notification calls on the wrong "show" function, opening a new window rather than un-hiding the original.
Thanks for the feedbacks !
I'm working on an improved version with pause mode, multiple timers and 30s increments. I will maybe release the source later, after a lot of cleaning !
For the notifications, it's the behavior of android which works by intents. Theses are sort of messages send to applications. Intents depends on something they call Context. This is very powerful since you can launch (or do whatever you want to) an application in different ways, and the behavior of the application can depend on the intent. For example, when you launch an application from the launcher on the home screen, you actually send an intent to the application.
In the Tick! case, when you click on the notification, you send an intent to bring back to foreground (if hidden) or relaunch (if closed) the application GUI (which is different from the counting "engine" which is a background process called Service). The intent sent from the notification is different from the one you used to launch it, thats why it relaunch the GUI because the system thinks it is a different context (which is the case).
You can try it : launch from the launcher, launch a timer, go back to the home screen. Now, the GUI is no more in foreground. If you open the notification bar an click on the notification it will relaunch the GUI as expected, and if you continue to click on it again, it will do nothing (as expected). That's because the second time you launched the app, you did it by sending an intent from the notificiation bar, which is different from the one from the launcher.
Now, i don't find this behavior very annoying, and I don't want to write 100 lines of code to handle differents cases! A trivial solution may exist, but I'm too novice with Android to look at it. If someone knows this easy solution, it will be a pleasure to implement it !
Very nice timer. However I have found two problems:
1. When selecting the notification tone, "Default" plays my ringtone when previewing, but when used for real it plays the default notification sound instead.
2. I used Tick for a five minute countdown several hours ago, and afterwards I exited the program and cleared the notification, but it still prevented my phone from sleeping all these hours, draining the battery severely. I had to use a process killer to get my phone to sleep.
Do you really need to keep the phone from sleeping, even during the countdown? A timer is just an alarm with a countdown, and alarms work even when the phone is sleeping. You just have to update the progress every time the phone wakes up. Right?
Hi,
1-I will look on the notification problem. It is quite strange since it always worked for me. Note that the parameter are set for the notification at the launch of the counter. Every change you make will affect only new countdowns. When you exit the app, it always save the last parameters, even made during a countdown, and restore them at a relaunch. So it is strange, and since i've improved again the counting engine, I hope this will be solved in the coming release.
2-You're right, I've found conditions when the wake-lock is not released at the end of the countdown. It's set now. However, the wake-lock requested is partial and does only concern the CPU, not the screen. I've tested again your version on my unplugged G2 and it behave just well.
The CPU is required to fire an alarm even in sleep mode. Thats because i don't use the alarm service of the device which only check every new minute if there is something to do.
And when it's in sleep mode, only a tiny service is counting. The GUI is stopped and it's memory given back.
May I ask what model of phone you use?
RabugenTom said:
May I ask what model of phone you use?
Click to expand...
Click to collapse
I'm using an HTC Desire.
I've just added here (and on the market) the version 1.3 which resolves a lot of issues (for exemple, the service exits as soon as it's no more used, thanks to bugmenever) and adds a pause mode (long click on the button)
RabugenTom said:
Now, i don't find this behavior very annoying, and I don't want to write 100 lines of code to handle differents cases! A trivial solution may exist, but I'm too novice with Android to look at it. If someone knows this easy solution, it will be a pleasure to implement it !
Click to expand...
Click to collapse
im fairly certain there is something simple out there to handle this, but as opposed to you being novice with android, i have 0 experience programming for it. and youre right, its not THAT annoying, and certainly not worth most your work time at this point.
Happy to hear about all those plans though! look forward to seeing them in action
keep up the good work!

[App] 2 Factor Authentication for Windows alpha UPDATE: Now Vista/Win7 ready

2 Factor Authentication for Windows alpha
Hey folks,
this is my alpha preview of my 2Factor Authentication App for Android/Windows.
Disclaimer: By installing this app you will possibly harm your Windowssystem.Expect many bugs in the Phone app, but especially in the Windows app. Use it at your own risk. By downloading the app you agree to this.
This app could make Windows unusable*
*Well, better use Linux or Mac anyway.
What does this app do?
It adds a second screen after you entered your password, asking for a pin. This pin can be generated by your mobile phone and only used once.
The screen will open everytime you login, even after Standby/Hibernate/LockScreen.
Who should use it?
Paranoid people like me, especially these that own a laptop. If someone gets your windowspassword via keylogger or phishing, he still can't login.
In addition you could use the Windows auto-login (loads up all your autostarts) and would be still required to enter a code.
Who shouldn't use it?
People who are working with restricted rights (no Admin/root rights!), as these won't get past the login screen ;-) (might be fixed in final).
People who have multiple accounts on their computer, as every user is required to enter the same pin (will be fixed in final).
People who think this adds an extreme amount of security. Even though it does work in failsafe mode, there are some ways to get around it. If the "bad guy" has physical access to your computer, this is almost as (un-)safe as the Windowspassword.
Installation
Extract all files from the zip to a folder, e.g. C:\IdislikeWindows\. Then run installtion.exe, make sure you run the installer with administrator rights. You need an internet connection for that, so the progamm can generate a QR Code, that you then scan with your phone (apk attached below).
After entering your first generated key you're good to go.
Make sure that you never remove or rename that folder or any files in it!
Removal
Just double click on Uninstall.exe. If you used the graphical login before, select that option. Make sure you run the uninstaller with administrator rights.
What works doesn't work (yet)
- Impress with a fancy UI
- It won't work on Windows 9x (won't be supported)
- Users can still Alt+Tab / Win+R
- Users can still open Taskmanager (this is done for debugging)
- Synchronize if you have to phones
- Multiple Accounts
- Non-admin Accounts
- Phone App stores only one passphrase
... and much more I guess.
Tested on
- Windows XP
For safety reasons, the Windows part won't work after 2nd of July. But I will upload a new version until then
So go ahead, test this app and report many bugs I bet there are a lot. In addition I'm curious if it works on Win7 and Vista as well.
If something goes wrong, you can always start uninstall.exe with your taskmanager.
I'm looking forward for your feedback!
Thanks,
Marc
Update 22/06/2011:
- added Vista/Win7 Manifests
- Ping not done via RawSocket, so it is possible to install on Vista/Win7
- Remote Sessions should trigger 2FA as well.
Screenshots:
forceu said:
2 Factor Authentication for Windows alpha
Hey folks,
this is my alpha preview of my 2Factor Authentication App for Android/Windows.
.......
What does this app do?
It adds a second screen after you entered your password, asking for a pin. This pin can be generated by your mobile phone and only used once.
The screen will open everytime you login, even after Standby/Hibernate/LockScreen.
Who should use it?
Paranoid people like me, especially these that own a laptop. If someone gets your windowspassword via keylogger or phishing, he still can't login.
In addition you could use the Windows auto-login (loads up all your autostarts) and would be still required to enter a code.
......
Click to expand...
Click to collapse
Man, you are a genius, I was really looking for something like this.
One question: does it work over RDP? I have a computer a work (encased in a rack in a renderfarm) and I work by log in with Remote Desktop Connection.
Cool... Will be keeping eye on this one!
daniel.mitran said:
Man, you are a genius, I was really looking for something like this.
One question: does it work over RDP? I have a computer a work (encased in a rack in a renderfarm) and I work by log in with Remote Desktop Connection.
Click to expand...
Click to collapse
It probably won't work, but I will try it today. And I know there is a way to trigger it after someone started a remote session. I guess I will have it coded today or tomorrow
I uploaded a zip, replace the service.exe with the one in your folder and try it. As I posted above, it is not tested, so I don't know if its actually working ;-)
Feedback is always appreciated.
/edit: Sorry for double post

2 questions - multitasking issues and native gchat

i installed mango RTM over the weekend and its been great. as i've been playing with it i've noticed 2 things
1. if you're texting with someone and you place the messaging app into "standby" (press windows button) and you get a text msg notification toast, if you click the toast it opens up a new copy of the messaging app. you can verify this by going into the multitasking switcher, you'll see 2 panels of "messaging". is this a bug or is this how its supposed to be?
2. i'm not really a big user of facebook chat but i am on gmail all the time so i was wondering if there's any way we can hack gchat on? gchat and fb chat both use the jabber protocol and since fb chat is enabled natively, we know there's a possibility of it being supported. any ideas?
thanks!
1: The "Multitasking" fast App switcher isn't showing instances of open apps. It's just showing recently use apps. Every app is in stand by mode if you don't "Back" out of them with the Back Button. The Task Switcher also has a 5 page limit. Apps outside that limit are still open/standby, just not in the list. At least this is how I believe it works. No way to tell till we have enough resume enabled apps that are Mango compatible to test this more. It's not the greatest implementation of Multitasking IMO. My 2 complains is this multiple pages of the same app issue that you mentioned & the 5 page limitation. When I'm really active on my phone, I can see this being an issue. Not a deal breaker, more of an annoyance.
1. The task switcher just show what you've done last. Also, native apps are always running and are not confine to the same restrictions as 3rd party apps.
2. Now that Microsoft open up Marketplace for Mango apps submissions, it won't be long before unofficial Google Talk apps show up.
Something that I noticed with wonder reader. Dont know if it's how the app is made, but..
When you open it, you hit windows (home) button, and hit back, it just come back instantly. But if you open it using the tile, it dont resume. It re-open it and it's not instantly.
Anyone else noticed?
mikeeam said:
Something that I noticed with wonder reader. Dont know if it's how the app is made, but..
When you open it, you hit windows (home) button, and hit back, it just come back instantly. But if you open it using the tile, it dont resume. It re-open it and it's not instantly.
Anyone else noticed?
Click to expand...
Click to collapse
Microsoft made a conscious design decision that apps started from the tile (on the Start screen or app list) are started as a new instance. The only way to fast app switch is by going through the backstack (either navigating sequentially via the back key or directly via the app switcher). I believe "a consistent user experience" was cited as the reason for this behavior.
This is quite different than in iOS, where the app switcher AND the home screen icon will fast resume an app (if still in memory). And that is why iOS has a way to delete apps from the app switcher, because that's the only way to start a new instance (it's also why Windows Phone doesn't need a way to clear apps from the app switcher). I happen to think Apple's design is better because more often than not, a user is looking to resume an experience, no matter how they end up starting app; therefore it should be the default behavior.
With Windows Phone deep linking, clicking on a secondary tile, toast notification, or a search extension can launch directly into a "page" inside the app, but it still takes time to fire up new instances of the app and the page.
You might also be interested to know that an app can only appear in the backstack once. So if you open an app using the main tile, then to go to the Start screen and start it again with a secondary tile, it'll knock the first instance off the backstack.
Anyway, probably more than you ever wanted to know but hope this clears it up.
Anthony
Wonder Reader

[APP][2.2+] My Car: Start car with voice/Vlingo/Viper/schedule based on temp/location

I was inspired for this by Fiqett, who created a Siri plugin that communicates with a PHP script that can start his car via his Viper SmartStart system. Much credit to him for the idea and the script.
This does something similar on Android (using Vlingo), along with some extra features (you can schedule the car to start based on the location of your phone and the current temperature).
What does it do?
You can start Vlingo and say “Start my car” and the car will start (you need a phone-capable Viper SmartStart system)
You can just tap the app and the car will start
You can schedule the car to start automatically at a certain time if the phone is at a defined location and if the temperature is below a defined setting
Please read this post completely before downloading. Some setup is required. Do not hesitate to ask if you are having trouble setting it up.
What does this require?
A phone-compatible Viper SmartStart system or module
An Android SmartPhone running Android 2.2 or later. I have tested this on a Galaxy Nexus and a Motorola Droid 1.
Fiquett's viper_control.php script (https://github.com/fiquett/Viper_SmartStart_Control)
A web server running PHP to run the control script (something like Xampp will work fine [http://www.apachefriends.org/en/xampp.html]). If there is enough interest in this, I can provide detailed instructions for configuring Xampp, but the configuration is straightforward.
My Android app (My Car, links below)
Vlingo (https://market.android.com/details?id=com.vlingo.client)
AndroidIdeas's TaskBomb (https://market.android.com/details?id=org.androidideas.taskbomb&hl=en) (any scheduler that can launch an activity will work)
How do I set it up?
Download Fiquett's viper_control.php script (https://github.com/fiquett/Viper_SmartStart_Control). Edit lines 9 and 10 to include your Viper username and password. Because the username and password are hardcoded in the script, the credentials are never passed insecurely between the phone and the server. The control script logs into Viper's servers and performs the requested action over HTTPS, so it is secure.
Put viper_control.php on a web server that is running PHP. I have it on a website hosted on GoDaddy.com. It would be more secure to put it on your home network and only access it via WiFi. You could also forward ports on your router so it could be accessible from anywhere. Something like Xampp (http://www.apachefriends.org/en/xampp.html) would probably run the script fine on Windows, Mac OS X, or Linux. Anyone with the knowledge that the script exists can start or unlock the car. Thus, the most secure way is to only access it via WiFi.
Once the script is set up, you should be able to go to your control URL in a browser (followed by ?action=remote) and the car should start (for example, http://192.168.0.100/viper_control.php?action=remote).
Install My Car (link is below).
Start the My Car Configuration app. Enter the URL for your viper_control.php script (do not put ?action=remote on the end). The other settings are optional and are for the Start My Car If app, which will start the car if the car is in the provided city and the temperature is under the provided value. Make sure you click Exit when you are done. Otherwise, Vlingo or TaskBomb might start the configuration instead of the car.
Run the My Car app. The car should start. If you run it again, the car should shut off.
Install Vlingo. I checked the Auto Listen box at the bottom so that it will start listening as soon as I start Vlingo (or you could use a Vlingo widget). You should be able to say “Start my car” to start the car.
Install TaskBomb for scheduling the car to start. Launch it, and go to Tasks. Add a new task, and name it “Start My Car.” Change the Action Type to MAIN. For Activity, select Start My Car If. Leave all other settings as they are. Go to Alarms. Add a new alarm, and select the task you just created. Set the schedule as desired. Mine runs Monday-Friday at 7:20am.
How do I get it?
Download the APK here:
http://www.ascci.net/mycar/MyCar.apk
Note: Google Chrome on ICS appears to rename this to a .zip file. Use a file manager to name it back or use the stock browser.
Plans for future versions:
App icons (I’m not very good at those, but I will take a stab at it if people use the app)
Display something to indicate if the car started or not
A way to start the car and immediately unlock it--for when you are in sight of it and want to start it just to be cool.
Any feedback, questions, or suggestions are welcome!
Lots of views... has anyone with a SmartStart system tried it? Any feedback?
Is there anything I could do to make the setup simpler (a video, providing Xampp setup instructions, etc.)?
is there a way to integrate it with BB10 Voice Control? :fingers-crossed:
hitchin999 said:
is there a way to integrate it with BB10 Voice Control? :fingers-crossed:
Click to expand...
Click to collapse
Might take a little digging, but we could probably figure out a way to get something working.
It appears that BB10's voice control has an "open" or "launch" command that works for some side-loaded Android apps.
http://forums.crackberry.com/blackberry-10-os-f269/voice-control-commands-772534/
Unfortunately, it doesn't look like "start" is a valid thing to say, so saying "Launch My Car" could work, but not as cool (that's why I was using Vlingo, because its key word to start apps is "start.") Although, since this is very new, maybe "start" is a valid thing to say to start an app.
The user on that post above states that this works for some side-loaded Android apps. We'd need to figure out what the criteria by which an Android app can be launched by BB10 via voice control is.
Would you be able to test it with some random Android app that runs on BB10, preferably one with a space in the name, to see if it works?
So for example, say "launch Angry Birds."
If it can do that, hopefully we can come up with something that will work. The scheduling part might be easier to do some other way (Viper's app has scheduling now, it didn't at the time of the OP).
Awesome! Nice work!
I have the paid version of Tasker and Assistant
I created a Tasker task that performs an HTTP GET of the viper_control.php?action= command. I then used Tasker's App Factory to create 4 different apps; lock, unlock, start, and stop.
The paid version of Assistant allows you to teach your assistant, for example; "When I say start my car open Start Car". Now I can say "Hey assistant, start my car" and my car starts.
Now to use Tasker to schedule my car to start and maybe even by temperature...
udz2002 said:
Awesome! Nice work!
I have the paid version of Tasker and Assistant
I created a Tasker task that performs an HTTP GET of the viper_control.php?action= command. I then used Tasker's App Factory to create 4 different apps; lock, unlock, start, and stop.
The paid version of Assistant allows you to teach your assistant, for example; "When I say start my car open Start Car". Now I can say "Hey assistant, start my car" and my car starts.
Now to use Tasker to schedule my car to start and maybe even by temperature...
Click to expand...
Click to collapse
Would you be willing to share those apps? I want to do the same exact thing but am having trouble.
Sent from my XT1056 using Tapatalk
gildan27 said:
I was inspired for this by Fiqett, who created a Siri plugin that communicates with a PHP script that can start his car via his Viper SmartStart system. Much credit to him for the idea and the script.
This does something similar on Android (using Vlingo), along with some extra features (you can schedule the car to start based on the location of your phone and the current temperature).
What does it do?
You can start Vlingo and say “Start my car” and the car will start (you need a phone-capable Viper SmartStart system)
You can just tap the app and the car will start
You can schedule the car to start automatically at a certain time if the phone is at a defined location and if the temperature is below a defined setting
Please read this post completely before downloading. Some setup is required. Do not hesitate to ask if you are having trouble setting it up.
What does this require?
A phone-compatible Viper SmartStart system or module
An Android SmartPhone running Android 2.2 or later. I have tested this on a Galaxy Nexus and a Motorola Droid 1.
Fiquett's viper_control.php script (https://github.com/fiquett/Viper_SmartStart_Control)
A web server running PHP to run the control script (something like Xampp will work fine [http://www.apachefriends.org/en/xampp.html]). If there is enough interest in this, I can provide detailed instructions for configuring Xampp, but the configuration is straightforward.
My Android app (My Car, links below)
Vlingo (https://market.android.com/details?id=com.vlingo.client)
AndroidIdeas's TaskBomb (https://market.android.com/details?id=org.androidideas.taskbomb&hl=en) (any scheduler that can launch an activity will work)
How do I set it up?
Download Fiquett's viper_control.php script (https://github.com/fiquett/Viper_SmartStart_Control). Edit lines 9 and 10 to include your Viper username and password. Because the username and password are hardcoded in the script, the credentials are never passed insecurely between the phone and the server. The control script logs into Viper's servers and performs the requested action over HTTPS, so it is secure.
Put viper_control.php on a web server that is running PHP. I have it on a website hosted on GoDaddy.com. It would be more secure to put it on your home network and only access it via WiFi. You could also forward ports on your router so it could be accessible from anywhere. Something like Xampp (http://www.apachefriends.org/en/xampp.html) would probably run the script fine on Windows, Mac OS X, or Linux. Anyone with the knowledge that the script exists can start or unlock the car. Thus, the most secure way is to only access it via WiFi.
Once the script is set up, you should be able to go to your control URL in a browser (followed by ?action=remote) and the car should start (for example, http://192.168.0.100/viper_control.php?action=remote).
Install My Car (link is below).
Start the My Car Configuration app. Enter the URL for your viper_control.php script (do not put ?action=remote on the end). The other settings are optional and are for the Start My Car If app, which will start the car if the car is in the provided city and the temperature is under the provided value. Make sure you click Exit when you are done. Otherwise, Vlingo or TaskBomb might start the configuration instead of the car.
Run the My Car app. The car should start. If you run it again, the car should shut off.
Install Vlingo. I checked the Auto Listen box at the bottom so that it will start listening as soon as I start Vlingo (or you could use a Vlingo widget). You should be able to say “Start my car” to start the car.
Install TaskBomb for scheduling the car to start. Launch it, and go to Tasks. Add a new task, and name it “Start My Car.” Change the Action Type to MAIN. For Activity, select Start My Car If. Leave all other settings as they are. Go to Alarms. Add a new alarm, and select the task you just created. Set the schedule as desired. Mine runs Monday-Friday at 7:20am.
How do I get it?
Download the APK here:
http://www.ascci.net/mycar/MyCar.apk
Note: Google Chrome on ICS appears to rename this to a .zip file. Use a file manager to name it back or use the stock browser.
Plans for future versions:
App icons (I’m not very good at those, but I will take a stab at it if people use the app)
Display something to indicate if the car started or not
A way to start the car and immediately unlock it--for when you are in sight of it and want to start it just to be cool.
Any feedback, questions, or suggestions are welcome!
Click to expand...
Click to collapse
I am willing to pay you to help me set this up with tasker app factory. Private message me if you're interested.
Sent from my XT1056 using Tapatalk
udz2002 said:
Awesome! Nice work!
I have the paid version of Tasker and Assistant
I created a Tasker task that performs an HTTP GET of the viper_control.php?action= command. I then used Tasker's App Factory to create 4 different apps; lock, unlock, start, and stop.
The paid version of Assistant allows you to teach your assistant, for example; "When I say start my car open Start Car". Now I can say "Hey assistant, start my car" and my car starts.
Now to use Tasker to schedule my car to start and maybe even by temperature...
Click to expand...
Click to collapse
is it possible that you could show me how to make my assistant app start my car i will donate to you for the assistance
udz2002 said:
Awesome! Nice work!
I have the paid version of Tasker and Assistant
I created a Tasker task that performs an HTTP GET of the viper_control.php?action= command. I then used Tasker's App Factory to create 4 different apps; lock, unlock, start, and stop.
The paid version of Assistant allows you to teach your assistant, for example; "When I say start my car open Start Car". Now I can say "Hey assistant, start my car" and my car starts.
Now to use Tasker to schedule my car to start and maybe even by temperature...
Click to expand...
Click to collapse
I found copies of your tasks elsewhere and am using in them with Tasker and Autovoice.
Do you know how to check status updates or get gps?
No I do not, sorry. I reactivated my SmartStart recently but it doesn't work right now.
if this post is still alive... I'd like to be able to send a request that unlocks the doors and then starts the car with one command, custom iPhone icon or web script. the reminder built into the app tries to start the car before disarm and alarm goes off every time. and of course, I'll pay.
Alexa, Start my Car
I finally stabilized a project that I have been working on for some time now. The project is to open my garage and start my jeep on demand using the Amazon Alexa voice assistant. Similar to the features on the Tesla. Using the Raspberry PI Zero and my existing home automation system, I can now command my Echos to “Warm up my Jeep” and be more confident that the task will run.
I first created this project by writing a program in the Android app Tasker where I used the Insteon APIs and the Viper SmartStart APIs to control both my garage and jeep. The program was to open the garage, wait for a confirmation that the garage was opened, and then start my jeep only if the garage was opened, all by a voice command. But the program was unreliable. It would work sometimes but most times it didn’t. I believe that the program was too process intensive for my Samsung S8 smartphone.
A few weeks ago, I decided to use another processing mechanism; the Raspberry PI. I found a python script on GetHub that uses the Viper Smartstart APIs to start my jeep. I installed it, tailored it to my needs, and wrapped a CGI script around it so that I can easily call it from my existing home automation system as an external network resource. I created a program that opens my garage, wait for a confirmation that my garage was opened, and then call the network resource that starts my jeep.
With my home automation system already integrated with the Amazon Alexa services, it was easy to have my Echos run my program to start my jeep. I basically set up my program in the Amazon Alexa app as a new device and created an Alexa Routine, for a customized command. I now say “Alexa, warm up my jeep” and the Alexa services open my garage and start up my jeep.
This project is awesomely convenient for me and secure as well. It easily fits within my already existing security model. Taking advantage of my Geo Fencing features, the program is designed to run only if I’m at home. And it is only accessible within my internal network. The alerts whenever my garage is opened and/or closed are still in place. And my security cameras and control panels still show me the garage whenever the garage door is opened and/or closed.
This was an exciting project and I’m still making enhancements to it, but for the most part it works as I intended, and it is much more reliable than using Tasker.
spoteat71 said:
Alexa, Start my Car
I finally stabilized a project that I have been working on for some time now. The project is to open my garage and start my jeep on demand using the Amazon Alexa voice assistant. Similar to the features on the Tesla. Using the Raspberry PI Zero and my existing home automation system, I can now command my Echos to “Warm up my Jeep” and be more confident that the task will run.
I first created this project by writing a program in the Android app Tasker where I used the Insteon APIs and the Viper SmartStart APIs to control both my garage and jeep. The program was to open the garage, wait for a confirmation that the garage was opened, and then start my jeep only if the garage was opened, all by a voice command. But the program was unreliable. It would work sometimes but most times it didn’t. I believe that the program was too process intensive for my Samsung S8 smartphone.
A few weeks ago, I decided to use another processing mechanism; the Raspberry PI. I found a python script on GetHub that uses the Viper Smartstart APIs to start my jeep. I installed it, tailored it to my needs, and wrapped a CGI script around it so that I can easily call it from my existing home automation system as an external network resource. I created a program that opens my garage, wait for a confirmation that my garage was opened, and then call the network resource that starts my jeep.
With my home automation system already integrated with the Amazon Alexa services, it was easy to have my Echos run my program to start my jeep. I basically set up my program in the Amazon Alexa app as a new device and created an Alexa Routine, for a customized command. I now say “Alexa, warm up my jeep” and the Alexa services open my garage and start up my jeep.
This project is awesomely convenient for me and secure as well. It easily fits within my already existing security model. Taking advantage of my Geo Fencing features, the program is designed to run only if I’m at home. And it is only accessible within my internal network. The alerts whenever my garage is opened and/or closed are still in place. And my security cameras and control panels still show me the garage whenever the garage door is opened and/or closed.
This was an exciting project and I’m still making enhancements to it, but for the most part it works as I intended, and it is much more reliable than using Tasker.
Click to expand...
Click to collapse
Is it still working?

What would you like to see on the Gear 2?

Not sure if theres already a thread (dont think there is but I havent searched far)
Things I would like to see are:
Official Social Media Apps - Facebook, Whatsapp, Twitter integration etc.
S Voice Improvement - Feel like it lacks a whopping amount, I literally feel like the only thing I can ask it to do is Call / Message someone or Open an app or request the weather (Which is on my homescreen anyway). Things that surprised me is that it can't play a song on the device on request, or open an application on the phone on request etc. I feel like it should run its responses through the official S Voice app on the phone if the request isn't a direct Gear command.
Lock security on wrist - Phone lock security on the wrist, I understand there is already the "Autolock" but some nice security features would possibly be a pin unlock that shows up on watch (or on phone if not connected) or a pattern unlock, gives more security options. Or even when clicking the option in notifications to "Open on phone" that it bypasses the lockscreen.
Remote Phone Viewer - Somewhat like teamviewer but where you can actually view your phones screen, scroll around and interact from your wrist, might be slow and tedious but would be a fun feature and extend its capabilities into the phone itself.
Unified Remote application for PC control - I always find Unified remote a good application for remote access to PC's it would be nice to see them develop an application for the wrist!
Android Wear Application integration, allowing tizen to run android wear apps, I feel if Samsung don't allow this, or don't speed up the process of passing applications their smart watches will be outran by watches such as the Moto 360.
Think thats all my ideas so far, would love to hear yours!
I would like to see an application like Shazam.
LiamS said:
Not sure if theres already a thread (dont think there is but I havent searched far)
Things I would like to see are:
Official Social Media Apps - Facebook, Whatsapp, Twitter integration etc.
S Voice Improvement - Feel like it lacks a whopping amount, I literally feel like the only thing I can ask it to do is Call / Message someone or Open an app or request the weather (Which is on my homescreen anyway). Things that surprised me is that it can't play a song on the device on request, or open an application on the phone on request etc. I feel like it should run its responses through the official S Voice app on the phone if the request isn't a direct Gear command.
Lock security on wrist - Phone lock security on the wrist, I understand there is already the "Autolock" but some nice security features would possibly be a pin unlock that shows up on watch (or on phone if not connected) or a pattern unlock, gives more security options. Or even when clicking the option in notifications to "Open on phone" that it bypasses the lockscreen.
Remote Phone Viewer - Somewhat like teamviewer but where you can actually view your phones screen, scroll around and interact from your wrist, might be slow and tedious but would be a fun feature and extend its capabilities into the phone itself.
Unified Remote application for PC control - I always find Unified remote a good application for remote access to PC's it would be nice to see them develop an application for the wrist!
Android Wear Application integration, allowing tizen to run android wear apps, I feel if Samsung don't allow this, or don't speed up the process of passing applications their smart watches will be outran by watches such as the Moto 360.
Think thats all my ideas so far, would love to hear yours!
Click to expand...
Click to collapse
I want Google now and a MUCH better texting program. I want to be able to receive the test and reply to it in one step.
TelloMan said:
I want Google now and a MUCH better texting program. I want to be able to receive the test and reply to it in one step.
Click to expand...
Click to collapse
Flesky Messengers lets you do the 2nd bit?
LiamS said:
Flesky Messengers lets you do the 2nd bit?
Click to expand...
Click to collapse
Yes, but you need to exit whichever notification you are in and go into Flesky. IMO, Flesky is slow, even with the latest update. Takes a few seconds to open and doesn't automatically refresh your feed. Very annoying that something better hasn't come out from Tizen yet. :crying:
twoesse said:
I would like to see an application like Shazam.
Click to expand...
Click to collapse
Theres an app called Gearam Music ID which works like shazam ive tested it and its pretty good!
TelloMan said:
Yes, but you need to exit whichever notification you are in and go into Flesky. IMO, Flesky is slow, even with the latest update. Takes a few seconds to open and doesn't automatically refresh your feed. Very annoying that something better hasn't come out from Tizen yet. :crying:
Click to expand...
Click to collapse
Oh I definitely agree with that, what annoys me about default notification app is that it takes up a huge bit of scroll space repeatedly telling you that the button below opens on the phone even though the button itself says that. Should use that space to have an "Open in watch messenger" to reply!
General keyboard
More and more apps let you type in stuff. But every app has his own made keyboard.
So a keyboard implementation general for all apps!!
Then developers can make the perfect keyboard which you can choose.
LiamS said:
Theres an app called Gearam Music ID which works like shazam ive tested it and its pretty good!
Click to expand...
Click to collapse
Thank's. I will try it.
Sorry for my bad english, i'm french.
gdanonym said:
General keyboard
More and more apps let you type in stuff. But every app has his own made keyboard.
So a keyboard implementation general for all apps!!
Then developers can make the perfect keyboard which you can choose.
Click to expand...
Click to collapse
Definitely agree, I don't mind typing on my watch it is manageable!
and we all know we're going to be doing it discreetly (while at work) so I could just carry a thin stylus if I ever needed to, might take something finding one, I was quite disappointed that non of the s pens worked.
"Unified Remote application for PC control "
I actually asked the developers of Unified Remote about making a Tizen port of their app - or at least something that could work in conjunction with the phone app. They said they'd look into it, but I'm not holding my breath.
We'll have more luck if the Color Tiger developers who make Smart IR lite come through with their new device that is being crowdfunded as we speak - as they said that device will be able to get commands from the watch somehow.
rEVOLVE said:
"Unified Remote application for PC control "
I actually asked the developers of Unified Remote about making a Tizen port of their app - or at least something that could work in conjunction with the phone app. They said they'd look into it, but I'm not holding my breath.
We'll have more luck if the Color Tiger developers who make Smart IR lite come through with their new device that is being crowdfunded as we speak - as they said that device will be able to get commands from the watch somehow.
Click to expand...
Click to collapse
Hopefully they do develop a watch app it would be great and promote their app much more. I would even pay for it!
At the moment im using Wearable Widgets with a 4x4 simple unified remote widget but as I don't like wearable widgets limited options on clock faces and lack of time updates I have to flick between clock faces which is impractical!
Just thought of a new one, develop sleep application to toggle your phone into a sleepmode turn sync off etc location dim screen. Then once you wake up and toggle sleep off it turns them all on!

Categories

Resources