Date Condition

I have installed this app which the Webstore page says works on Homey Pro 2026. It shows up as an installed app in the apps list but does not appear to be available when creating advanced flows. How do I find it. I want to create an app to tell me each day what the day and date is.

Condition” means: something has to meet (a) certain value(s) / state(s).

The cards you’re looking for can be found when you add “And” cards to your flow.
It’s shown in the app store as well:


Guessuming you mean “flow” by “app”:

Today’s date is available as tag by default. You can insert it in a messaging / notification card

The name of the day is not available, I use this script to determine today’s name


// Create a date object
    var date = new Date();
    // Create an array of weekday names
    var week = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];

    //creating new HomeyScriptTag 'NameOfDay' (NameOfToday):
    await tag("NameOfDay", week[date.getDay()] );  

    // For testing purposes
    // get date:
    console.log("date: ", date)
    // Display the name of today:
    console.log( "NameOfDay", week[date.getDay()] );
  

return(true);

Scripts can be run from Homeyscript flow cards