You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 rivejä
477 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_SensorHXGetLightLuxEx "SensorHXGetLightLux"
  5. class SensorHXGetLightLuxEx : public JObject
  6. {
  7. public:
  8. JIntObj Channel;
  9. JStrObj Info;
  10. public:
  11. SensorHXGetLightLuxEx(JObject *pParent = NULL, const char *szName = JK_SensorHXGetLightLuxEx):
  12. JObject(pParent,szName),
  13. Channel(this, "Channel"),
  14. Info(this, "Info"){
  15. };
  16. ~SensorHXGetLightLuxEx(void){};
  17. };
  18. NS_NETSDK_CFG_END