Set target temperature, heating or cooling mode, climate settings, and much more, using a single API that helps save energy.
Nest
70
OFF
Use a single API to tap into a vast set of supported brands and devices.
Set thermostat mode and temperature across brands
Create complex daily and weekly schedules to optimize usage
Quickly enable eco mode across brands to enable deep energy savings
Get full event streams, standardized across brands, for temperature change and other activities
Seam provides a library of pre-built UI components to ship device UIs in minutes, not days. It handles securely retrieving device data and letting your application users issue device commands.
1import {
2 SeamProvider,
3 ConnectAccountButton,
4 DeviceManager,
5} from "@seamapi/react"
6
7export const App = () => {
8 return (
9 <SeamProvider publishableKey="your_publishable_key">
10 <main>
11 <h1>My App</h1>
12 <ConnectAccountButton />
13 <DeviceManager />
14 </main>
15 </SeamProvider>
16 )
17}
18
1import {
2 SeamProvider,
3 ConnectAccountButton,
4 DeviceManager,
5} from "@seamapi/react"
6
7export const App = () => {
8 return (
9 <SeamProvider publishableKey="your_publishable_key">
10 <main>
11 <h1>My App</h1>
12 <ConnectAccountButton />
13 <DeviceManager />
14 </main>
15 </SeamProvider>
16 )
17}
18