Send data to Particle.function from Losant dashboard via device command

I’m using Losant to monitor variables from my Particle. That works fine. But now I want to call a function on my Particle from a Losant dashboard. I have verified that the function works via the Particle console. However, if i call the function from the Losant dashboard nothing happens. Anybody got an idea what i’m doing wrong?

This is my code on the Particle

int setTemp (String paramValue) {
tempSet = paramValue.toInt();
return 1;

This is my Losant dashboard setup.

You need to use a Particle Call Node in your Losant workflow.

The virtual button node would be triggered by the dashboard.

2 Likes

Thx! Wil look into it.

1 Like