Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display switches automatically on #354

Closed
hermannw opened this issue Jun 24, 2024 · 1 comment
Closed

Display switches automatically on #354

hermannw opened this issue Jun 24, 2024 · 1 comment
Labels
stale This issue has been automatically marked as stale because it has not had recent activity.

Comments

@hermannw
Copy link

hermannw commented Jun 24, 2024

Hi guys,
I am using the Node-Red example and I added the following:
pixnr
The code in the function nodes:
Display:

var night = msg.payload;

if (night == "on")
{
    msg.sleepMode = true;
}
else
{
    msg.sleepMode = false;
}
node.status({ fill: "yellow", shape: "ring", text: "SleepMode is " + msg.sleepMode });

return msg;

Display ON:

msg.sleepMode = false;
node.status({ fill: "yellow", shape: "ring", text: "SleepMode is " + msg.sleepMode});
return msg;

Display OFF

msg.sleepMode = true;
node.status({ fill: "yellow", shape: "ring", text: "SleepMode is " + msg.sleepMode});
return msg;

When night mode is activated automatically or manually and either the clock or the date is shown at that moment, Pixelit goes to sleep mode (zzz) but a few seconds later it comes back on and keeps showing only the clock and date.
I am using big fonts. When the clock comes back up, it shows small and bold font for a few seconds and the it switches back to big font.
PixeIt Version 2.5.0 running on Wemos D1 mini.

Any ideas why this happens?

Hermann

Copy link
Contributor

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days

@github-actions github-actions bot added the stale This issue has been automatically marked as stale because it has not had recent activity. label Jul 25, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Aug 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
stale This issue has been automatically marked as stale because it has not had recent activity.
Projects
None yet
Development

No branches or pull requests

1 participant