Skip to content

Commit

Permalink
updating Driver, including support for Backlash and Advanced Configur…
Browse files Browse the repository at this point in the history
…ation window
  • Loading branch information
EverettQuebral committed Jan 16, 2017
1 parent 13f7d9a commit c95c1d3
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 44 deletions.
1 change: 1 addition & 0 deletions Driver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
// --------------------------------------------------------------------------------------------
// 24-dec-2016 Everett Quebral 6.0.1 Added support of Temperature, More error checking, full compatibility with absolute focusers
// support for servo
// 15-Jan-2017 Everett Quebral 6.0.2 Added advanced configuration for Backlash


// This is used to define code in the template that is specific to one class implementation
Expand Down
8 changes: 4 additions & 4 deletions InnoSetup.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
[Setup]
AppID={{44d473a9-5f1c-43b3-8207-33bfbb38777e}
AppName=ASCOM EQFocuser Focuser Driver
AppVerName=ASCOM EQFocuser Focuser Driver 1.0.1
AppVerName=ASCOM EQFocuser Focuser Driver 1.0.2
AppVersion=1.0.0
AppPublisher=Everett Quebral <Everett.Quebral@gmail.com>
AppPublisherURL=mailto:Everett.Quebral@gmail.com
AppSupportURL=http://tech.groups.yahoo.com/group/ASCOM-Talk/
AppUpdatesURL=http://ascom-standards.org/
VersionInfoVersion=1.0.0
AppSupportURL=http://everettquebral.com/
AppUpdatesURL=http://everettquebral.com/
VersionInfoVersion=1.0.2
MinVersion=0,5.0.2195sp4
DefaultDirName="{cf}\ASCOM\Focuser"
DisableDirPage=yes
Expand Down
111 changes: 71 additions & 40 deletions MainWindow.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ public MainWindow(Focuser focuser)
InitializeComponent();
InitControls();

this.FormBorderStyle = FormBorderStyle.FixedSingle;

}

delegate void SetCurrentPositionCallBack(int position);
Expand Down Expand Up @@ -181,5 +183,20 @@ private void numericUpDownBacklash_ValueChanged(object sender, EventArgs e)
{
focuser.Action("L", numericUpDownBacklash.Value.ToString());
}


private void btnShowAdvanced_Click(object sender, EventArgs e)
{
panel1.Visible = !panel1.Visible;

if (panel1.Visible)
{
this.Height = 395;
}
else
{
this.Height = 262;
}
}
}
}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ This is an open source project for controlling a stepper motor controlled by Ard

###### Main Window controller
![Main Window](Resources/MainWindow.png?raw=true "Main Window")

###### Download Driver
The EQ ASCOM Driver 1.0.2 setup is available at https://dl.dropboxusercontent.com/u/28674742/EQFocuser-1.0.2-Setup.exe

0 comments on commit c95c1d3

Please sign in to comment.