ERIS CORE

◆ onAnalog3()

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

class specific onAnalog3 implementation

Parameters
uval
fval

Reimplemented from AppBaseClass.

Definition at line 729 of file AppWren.h.

729  {
731  return;
732  } else{
733  wrenEnsureSlots(vm, 4);
734  wrenSetSlotHandle(vm, 0, h_slot0);//App
735  wrenSetSlotDouble(vm, 1, fval);//param
736  if (!isWrenResultOK(wrenCall(vm,h_onAnalog3))){
738  };
739  }
740  };
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
WrenHandle * h_onAnalog3
Definition: AppWren.h:791

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

+ Here is the call graph for this function: