Particle.publish: No Events shown

I started using the Particle Boron, with the goal of using it for Push Messages. However, in performing some testing, I do not see any events after sending a simple Particle.publish. My device is online, the LED is cyan and breathing. The console shows I am online. The device flashes OK. The code is shown below. Not sure what I am missing. Thanks in advance.

bool success;

void setup(){
   pinMode(D7,OUTPUT);   
}

void loop(){
    digitalWrite(D7,LOW);    
    success=Particle.publish("ATTENTION","Motion!",PRIVATE);   
    delay(5000);
    
    if(!success) {
        digitalWrite(D7,LOW);
    }
    else {
        digitalWrite(D7,HIGH);
    }   
    
    delay(1000);
}

OK. Disregard. I missed the fact that the Event feature only works in Google Chrome. I was using Microsoft Edge. Thanks.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.