SinricPro Library
SinricProCamera.h
1 
2 /*
3  * Copyright (c) 2019 Sinric. All rights reserved.
4  * Licensed under Creative Commons Attribution-Share Alike (CC BY-SA)
5  *
6  * This file is part of the Sinric Pro (https://github.com/sinricpro/)
7  */
8 
9 #ifndef _SINRICCAMERA_H_
10 #define _SINRICCAMERA_H_
11 
12 #include "SinricProDevice.h"
13 
19  public:
20  SinricProCamera(const DeviceId &deviceId);
21  String getProductType() { return SinricProDevice::getProductType() + String("CAMERA"); }
22 };
23 
24 SinricProCamera::SinricProCamera(const DeviceId &deviceId) : SinricProDevice(deviceId) {}
25 
26 
27 #endif
28 
SinricProCamera
Camera suporting basic on / off command.
Definition: SinricProCamera.h:18
SinricProDevice
Base class for all device types.
Definition: SinricProDevice.h:24