Skip to main content
The app runs in one of two modes, set in app.config.ts. The mode shapes the home screen and which products the QR scanner accepts.

single-product

mode: "single-product",
productId: "<uuid>",
  • The app is for one device line.
  • QR scan rejects devices from other products.
  • Home screen shows a flat list of that product’s devices.
Use this when your app represents a single product (e.g. one specific thermostat model).

multi-product (default)

mode: "multi-product",
  • The app is for a catalog of your products.
  • QR scan accepts any of your products.
  • Home screen groups devices by product family.
Use this when one app serves your whole device lineup.

Choosing

You ship…Use
One product, one appsingle-product
A catalog under one brandmulti-product

Next: AI screens

Generate the device UI for each product.