List of connectivity only see "Virtual"

Hi community… I’m doing a simple LED light with Arduino uno, So my List of connectivity only see “Virtual” . I don’t use ethernet Shield, I use usb Connectivity.

thks

you have to select virtual connectivity, then add the channel you want and write your code accordingly.

for above case, the code will be.

CAYENNE_IN(12) {
  int value = getValue.asInt();
  digitalWrite(light_pin, value);
}
1 Like

thank shramiksalgaonkar

it works now…

1 Like