The Following 32 Users Say Thank You to Sfiet_Konstantin For This Useful Post: | ||
![]() |
2014-07-08
, 17:47
|
|
Posts: 2,021 |
Thanked: 1,060 times |
Joined on Apr 2010
@ Hong Kong
|
#2
|
![]() |
2014-07-08
, 17:57
|
|
Posts: 6,436 |
Thanked: 12,701 times |
Joined on Nov 2011
@ Ängelholm, Sweden
|
#3
|
![]() |
2014-07-08
, 18:49
|
Posts: 344 |
Thanked: 1,345 times |
Joined on Aug 2012
@ Paris, FR
|
#4
|
![]() |
2014-07-08
, 20:36
|
Posts: 84 |
Thanked: 79 times |
Joined on Dec 2013
|
#5
|
![]() |
2014-07-09
, 10:52
|
Posts: 123 |
Thanked: 108 times |
Joined on Oct 2008
@ Prague, Czech
|
#6
|
![]() |
2014-07-09
, 12:09
|
Posts: 344 |
Thanked: 1,345 times |
Joined on Aug 2012
@ Paris, FR
|
#7
|
import org.SfietKonstantin.phonebot 1.0 import org.SfietKonstantin.phonebot.debug 1.0 import org.SfietKonstantin.phonebot.profile 1.0 Rule { trigger: DebugTrigger { path: "/silent" } action: [ ProfileAction { profile: "silent" }, LoggingRule {} ] }
![]() |
2014-07-09
, 13:32
|
Posts: 752 |
Thanked: 2,808 times |
Joined on Jan 2011
@ Czech Republic
|
#8
|
![]() |
2014-07-09
, 19:50
|
Posts: 344 |
Thanked: 1,345 times |
Joined on Aug 2012
@ Paris, FR
|
#9
|
Thank you, this looks very promising!
Have you looked into timedclient support integration? I'm using it (in a very hackish way though) in one of my apps and it's a great tool.
![]() |
2014-08-01
, 20:19
|
Posts: 344 |
Thanked: 1,345 times |
Joined on Aug 2012
@ Paris, FR
|
#10
|
![]() |
Tags |
phonebot, task scheduler |
Thread Tools | |
|
After some discussions on TJC and some brainstorm, I'm proud to introduce phonebot, a scheduling daemon that takes inspiration from profilematic, IFTTT and on{X}
It has the following features
Architecture
phonebot isn't trying to reinvent the wheel. Since we are with Qt, we can take advantage of QML and JS to write rules. Actually phonebot is just reading QML files that contains rules. It uses the powerful QQmlEngine to do all the hard work of parsing, interpreting etc.
A Rule in phonebot is a QML component that have 3 properties
- trigger: something that triggers the rule
- condition: a condition (or conditions) to respect for the rule to be active
- actions: a series of actions to execute when the rule is triggered, and when conditions are respected
The Trigger is in charge of emitting signals to run the Rule. Triggers could be: when it's 10pm, when you enter in the home wifi zone, when Battery reached a certain level etc.The Condition do not provide any signal, and represent more a state. A Condition could be "when driving", "when at home" etc. (even if implementing this kind of condition is rather tricky).
An Action is what to run: execute a program, turn on / off some settings, change an ambience, or use DBus to do stuff.
Here is an example of scripted rule. You will also be able to configure rule with a friendly UI (using default Triggers, Conditions and Actions).
How to use
If you are running the harbour version (that is the only version being released), you should keep the application always on to have rules working.
To add a rule, use the pull down menu on the main page, you will then have to
Configure a component (Trigger, Condition or Action)
First, select the component you want to configure. A dialog will appear, asking you to select a component type. By clicking on this entry, you will be shown a list of components. Select the one you want.
Then, you will come back to the previous dialog. You will see that the selected component is shown in the component type, and you will be able to configure it.
Configure it, and accept to have the component configured. Remember that you need at least a trigger, to trigger an action, and an action to be triggered.
Download
Of course, this post will be updated when new features comes.
Developer of Friends Facebook client, patchmanager, Phonebot
Blogger at Jollafr and random thoughts on my personnal blog
Support my work
Last edited by Sfiet_Konstantin; 2014-12-29 at 13:13.