From 2919dc51cf9bad458a52663c51caa701a5eed72c Mon Sep 17 00:00:00 2001 From: Edward Falk Date: Thu, 21 Mar 2019 14:58:29 -0700 Subject: [PATCH] Create org.openintents.action.CALCULATOR --- .../org.openintents.action.CALCULATOR | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 _intent_specs/org.openintents.action.CALCULATOR diff --git a/_intent_specs/org.openintents.action.CALCULATOR b/_intent_specs/org.openintents.action.CALCULATOR new file mode 100644 index 0000000..517e397 --- /dev/null +++ b/_intent_specs/org.openintents.action.CALCULATOR @@ -0,0 +1,38 @@ +--- +title: Launch calculator for a result +action: org.openintents.action.CALCULATOR +extras: + - + name: X + type: double + var: X + description: X register value + - + name: Y + type: double + var: Y + description: Y register value + - + name: Z + type: double + var: Z + description: Z register value +out: + extras: + - + name: X + type: double + var: X + description: X register value + - + name: Y + type: double + var: Y + description: Y register value + - + name: Z + type: double + var: Z + description: Z register value +--- +Launches the calculator app with optional initial values for X,Y,Z registers. Returns X,Y,Z to the caller.