Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/HomeKit/HMEnums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,10 @@ public enum HMCharacteristicType {
[iOS (10,2), Watch (3,1,1), TV (10,1)]
[Field ("HMCharacteristicTypeHumidifierThreshold")]
HumidifierThreshold,

[iOS (9,0), Watch (2,0), TV (10,0)]
[Field ("HMCharacteristicTypeSecuritySystemAlarmType")]
SecuritySystemAlarmType,
}

// conveniance enum (ObjC uses NSString)
Expand Down
2 changes: 1 addition & 1 deletion src/homekit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ interface HMCameraSnapshotControlDelegate
[Export ("cameraSnapshotControl:didTakeSnapshot:error:")]
void DidTakeSnapshot (HMCameraSnapshotControl cameraSnapshotControl, [NullAllowed] HMCameraSnapshot snapshot, [NullAllowed] NSError error);

[iOS (10,1)][Watch (3,1)][NoTV]
[iOS (10,1)][Watch (3,1)][TV (10,1)]
[Export ("cameraSnapshotControlDidUpdateMostRecentSnapshot:")]
void DidUpdateMostRecentSnapshot (HMCameraSnapshotControl cameraSnapshotControl);
}
Expand Down