Skip to content
Open
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: 2 additions & 2 deletions Drivers/FocuserDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ public int Position {

public bool TempCompAvailable { get => false; }

public bool TempComp { get => false; set => throw new NotImplementedException(); }
public bool TempComp { get => false; set { } }

public double Temperature { get => double.NaN; }

public bool HasSetupDialog => throw new NotImplementedException();
public bool HasSetupDialog => false;

public string Id { get => _info.Id; }

Expand Down