OSC: Countdown Timer Commands
Control countdown timer values, display mode, restart, and full styling.
Timer control
| Address |
Args |
Description |
/pmix/countdown/{n}/values |
float, float |
Set start and end values |
/pmix/countdown/{n}/mode |
string |
Set display mode: timer, wholeNumbers |
/pmix/countdown/{n}/restart |
โ |
Restart the countdown |
| Address |
Args |
Description |
/pmix/countdown/{n}/position |
float, float |
Set X, Y position (0โ1) |
/pmix/countdown/{n}/scale |
float |
Set scale (0.1โ10) |
/pmix/countdown/{n}/rotation |
float |
Set rotation (-180 to 180) |
Text styling
| Address |
Args |
Description |
/pmix/countdown/{n}/fontSize |
float |
Set font size |
/pmix/countdown/{n}/fontName |
string |
Set font name |
/pmix/countdown/{n}/textAlignment |
string |
left, center, right |
/pmix/countdown/{n}/textColor |
float x4 |
Set text color (R, G, B, A) |
/pmix/countdown/{n}/bgColor |
float x4 |
Set background color (R, G, B, A) |
/pmix/countdown/{n}/bold |
int 0/1 |
Set bold style |
/pmix/countdown/{n}/italic |
int 0/1 |
Set italic style |
/pmix/countdown/{n}/uppercase |
int 0/1 |
Set uppercase |
/pmix/countdown/{n}/padding |
float, float |
Set padding (horizontal, vertical) |
/pmix/countdown/{n}/cornerRadius |
float |
Set corner radius |
Examples
# Set countdown to 30 seconds, whole numbers mode
oscsend <ipad-ip> 9000 /pmix/countdown/6/values ff 30 0
oscsend <ipad-ip> 9000 /pmix/countdown/6/mode s wholeNumbers
# Restart the countdown
oscsend <ipad-ip> 9000 /pmix/countdown/6/restart
# Style: large yellow text at bottom of screen
oscsend <ipad-ip> 9000 /pmix/countdown/6/fontSize f 96.0
oscsend <ipad-ip> 9000 /pmix/countdown/6/textColor ffff 1.0 1.0 0.0 1.0
oscsend <ipad-ip> 9000 /pmix/countdown/6/position ff 0.5 0.8