Watchface Builder Wiki

Ultimate Watchface Builder

User Tools

Site Tools


condition-statements

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
condition-statements [2016/02/28 15:06]
Wearable Software
condition-statements [2016/02/28 15:31]
Wearable Software removed
Line 2: Line 2:
 You can use condition statements in expressions to build dynamic watchfaces. The syntax for a conditional statement is: You can use condition statements in expressions to build dynamic watchfaces. The syntax for a conditional statement is:
  
-$condition?true value:false value$+<code>$condition?true value:false value$</code>
  
-Following operators are supported for condition: +Following operators are supported for condition: 
-  * >= +  * greater equal >= 
-  * <= +  * lower equal <= 
-  * < +  * lower 
-  * > +  * greater 
-  * == +  * equals == 
-  * !=+  * not equals !=
  
 ===== Example ===== ===== Example =====