Events * Could not remove event

Hi all,

I have to following message.
I am not longer able to add or remove events.
Anyone been in similar situation?

Also get this when trying to edit event

There is an issue with cayenne dashboard UI, but the event is already added to the respective widget. You can check that in the event calendar or by checking if there is a calendar symbol present on top right corner of the widget.
32%20PM

To remove the widget. Go to the event calendar and click on the x next to the event name.

Thanks for the reply.
Yes even when inside the scheduling section, the event will not be removed.

can you private message me your email_id.

Done thank you

Did you have a chance to look into this?

we are looking into the issue.

the event has been deleted from your account.

Hi ! I have the same problem in my account. Can’t delete or create an event, and also when I tried to use that event, it didn’t triggered the selected GPIO. Can’t understand why, even when I get the On / Off activities SMS.

Please help, thanks !

can you private message me your account details.

1 Like

Hi…

I couldnt view the schedule. I manage to add the schedule from the setting but when i tried to view the schedule dashboard, it does not shows. Can you help me please. Thank you in advanced

try this and it will open the event calendar. you can then delete it by clicking on x

thank you so much… :star_struck: but sorry to bother u again, i would like to know, i am creating a schedule where specific time the fish feeder with motor will on for 1 minute, after 1 minute it will be off. but i cant set the time. the schedule can only set for 5 minutes. can you help me tq.

The time between the motor ON and OFF, you can control it on your device.

i actually wanted to do something like this… but the schedule can only set to 5 minutes. can u advice thank you.

what do you mean by only 5 minutes? The time of ON you can control it locally on your device. Can you share the progress of your project?

I set the motor to ON using the schedule

and i want to set the motor to OFF after 1 minute

but after saving it the OFF does not change where it suppose to be 18:21

onoff

it seems like the minutes can only set 5 minutes by default. when i press the button up and down of the minutes, it only shows increase of 5 minutes or decrease by 5 minutes.

i saw in one post that he successfully added one minute in the schedule

i hope u understand what i mean. this is the only last part that im being stuck with. what i have tried so far is turning it ON for 5 minutes then switching it OFF after 5 minutes. i dont want the motor to running for 5 minutes. i only want it to run for 1 minutes.

use only one schedule for turning on and then turn it off locally on your device using the code.

unsigned long lastMillis = 0;
boolean on = false;

void loop()
{
  Cayenne.loop();

   if(on && (millis() - lastMillis > 10000)) {.    change this time to whatever you want in millisecond.
	digitalWrite(ACTUATOR_PIN, HIGH);
        on = false
   }
}

// This function is called when data is sent from Cayenne.
CAYENNE_IN(VIRTUAL_CHANNEL)
{

	if (getValue.asInt() == 0) {
		digitalWrite(ACTUATOR_PIN, HIGH);
        lastMillis = millis();
        on = true;
	}

}

im sorry, where shall i put this code? my fish feeder motor is connected to raspberry pi.