# \[Homey Pro (Early 2023)\] App unsupported list

**URL:** https://community.homey.app/t/homey-pro-early-2023-app-unsupported-list/70324
**Category:** Apps
**Tags:** homey-pro, homey-pro-2023
**Created:** [October 12, 2022, 8:44pm UTC](https://community.homey.app/t/homey-pro-early-2023-app-unsupported-list/70324 "2022-10-12T20:44:01Z")
**Posts on this page:** 1
**Showing post:** 454

<div class="post-metadata">

### Author: ![Peter\_Kawa](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/peter_kawa/32/173848_2.png) [@Peter\_Kawa](https://community.homey.app/u/Peter_Kawa)
#### Post date: [March 13, 2023, 7:42pm UTC](https://community.homey.app/t/homey-pro-early-2023-app-unsupported-list/70324/454 "2023-03-13T19:42:42Z")

</div>

This is also possible

 ![Screenshot from 2023-03-13 20-37-22](https://us1.discourse-cdn.com/flex025/uploads/athom/original/3X/f/c/fc2f5a81262ce9370f15458013632d538c1e421b.png)

Use a Homeyscript THEN card, ‘run code and return text-tag’

 ![Screenshot from 2023-03-13 20-41-51](https://us1.discourse-cdn.com/flex025/uploads/athom/original/3X/6/f/6f3202735bee4270e6226f96d02329e62ed669a5.png)

The result of the code becomes available per the ‘Result’ tag, which you can put in a timeline card or such.

Paste the code below into the card, and run this every day or so.

```auto
// Search and display app updates for SDk2 (SDk3 is OK, but SDk2 is deprecated)

let updatesArr = await Homey.apps.getApps().then(f => Object.values(f).reduce((r,b)=>Object.assign(r,b.sdk == 2 ? {[b.name]:b.updateAvailable} : ''), {}));
let appUpdates = JSON.stringify(updatesArr, null, 1);

// timestamp
let SysInfo = await Homey.system.getInfo(); 
// Extract local time
var localTime = SysInfo.dateHuman.slice(SysInfo.dateHuman.indexOf(' ')+1); 

return 'Your SDk2 apps (with available Update):\n' + localTime + '\n' + appUpdates;

```

> [@phusebox](#):
>
> 600+ flows?

Yes it’s my Homey. I don’t believe it gets slow because of many flows.  
Look what I did with a 512MB (non)Pro, and it was not dead slow:

> [@How much can a 512MB Pro handle!](https://community.homey.app/t/how-much-can-a-512mb-pro-handle/49687):
>
> I’d like to experiment and search for boundaries. At the moment my Homey Pro (512MB RAM - singlecore) uses 640MB’s, and has -130MB's of free memory thinkingcrazy_face It runs 41 apps / 259 devices / 504 flows. But now I’m starting to notice it responds slower at sensors and switching lights. I was told b/c the -130MB's free memory are being swapped to ssd storage. Since ssd has a certain amount of writes limit, it’s probably not a good idea in terms of life time. But it’s fun to test…

---

_[View the full topic](https://community.homey.app/t/homey-pro-early-2023-app-unsupported-list/70324)._
