Skip to content
This repository has been archived by the owner on Jan 30, 2019. It is now read-only.

Commit

Permalink
Merge pull request #194 from dotMorten/develop
Browse files Browse the repository at this point in the history
Fix for parsing LSF Transition state parameters
  • Loading branch information
bfjelds committed Jan 13, 2016
2 parents 1fd266d + 7069118 commit 04397ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions AllJoyn/Platform/BridgeRT/ILSFHandler.h
Expand Up @@ -24,11 +24,11 @@ namespace BridgeRT
public ref struct State sealed
{
public:
property bool IsOn;
property uint32 Brightness;
property uint32 Hue;
property uint32 Saturation;
property uint32 ColorTemp;
property Platform::IBox<bool>^ IsOn;
property Platform::IBox<uint32>^ Brightness;
property Platform::IBox<uint32>^ Hue;
property Platform::IBox<uint32>^ Saturation;
property Platform::IBox<uint32>^ ColorTemp;
};

// *********************************************************************************************************************************************************
Expand Down Expand Up @@ -435,4 +435,4 @@ namespace BridgeRT
IAdapterSignal^ get();
}
};
}
}
2 changes: 1 addition & 1 deletion AllJoyn/Platform/BridgeRT/LampState.cpp
Expand Up @@ -778,4 +778,4 @@ LampState::GetInstance(_In_ alljoyn_busobject busObject)
{
return nullptr;
}
}
}

0 comments on commit 04397ea

Please sign in to comment.