ERIS CORE

◆ onAnalog4()

void AppWren::onAnalog4 ( uint16_t  uval,
float  fval 
)
inlineoverrideprotectedvirtual

class specific onAnalog4 implementation

Parameters
uval
fval

Reimplemented from AppBaseClass.

Definition at line 748 of file AppWren.h.

748  {
750  return;
751  } else{
752  wrenEnsureSlots(vm, 4);
753  wrenSetSlotHandle(vm, 0, h_slot0);//App
754  wrenSetSlotDouble(vm, 1, fval);//param
755  if (!isWrenResultOK(wrenCall(vm,h_onAnalog4))){
757  };
758  }
759  };
WrenHandle * h_onAnalog4
Definition: AppWren.h:792
void releaseWrenHandles()
release any/all Wren embedded call handles
Definition: AppWren.cpp:1651
bool isWrenResultOK(WrenInterpretResult res)
Definition: AppWren.h:543
bool enable_call_forwarding
Definition: AppWren.h:765
WrenVM * vm
Definition: AppWren.h:780
WrenHandle * h_slot0
Definition: AppWren.h:781

References enable_call_forwarding, h_onAnalog4, h_slot0, isWrenResultOK(), releaseWrenHandles(), and vm.

+ Here is the call graph for this function: