Hi
I see interesting function on mDash I want to know how can to call Custom RPC Service for Get and Set
for example I have function like this…
float temperature = 0;
void setTemp(float t) {
temperature = t; // setting from mdash
}
void getTemp() {
return temperature; // return to mdash
}