mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
22 lines
384 B
C
22 lines
384 B
C
#pragma once
|
|
#include "_base.h"
|
|
|
|
// Hacked together by @Willy-JL and @Spooks4576
|
|
// Research by @Spooks4576
|
|
|
|
typedef enum {
|
|
SmartthingsTypeBuds,
|
|
SmartthingsTypeMAX,
|
|
} SmartthingsType;
|
|
|
|
typedef struct {
|
|
SmartthingsType type;
|
|
union {
|
|
struct {
|
|
uint32_t model;
|
|
} buds;
|
|
} data;
|
|
} SmartthingsCfg;
|
|
|
|
extern const Protocol protocol_smartthings;
|