diff --git a/Meade.net.Telescope.UnitTests/TelescopeUnitTests.cs b/Meade.net.Telescope.UnitTests/TelescopeUnitTests.cs index 6bf096d..4812a2b 100644 --- a/Meade.net.Telescope.UnitTests/TelescopeUnitTests.cs +++ b/Meade.net.Telescope.UnitTests/TelescopeUnitTests.cs @@ -233,6 +233,8 @@ namespace Meade.net.Telescope.UnitTests [TestCase("enter", "EK13")] [TestCase("mode", "EK9")] [TestCase("longMode", "EK11")] + [TestCase("longenter", "EK10")] + [TestCase("longgoto", "EK25")] [TestCase("goto", "EK24")] [TestCase("0", "EK48")] [TestCase("1", "EK49")] diff --git a/Meade.net.Telescope/Telescope.cs b/Meade.net.Telescope/Telescope.cs index 65b0b2e..d9ad0c3 100644 --- a/Meade.net.Telescope/Telescope.cs +++ b/Meade.net.Telescope/Telescope.cs @@ -220,6 +220,9 @@ namespace ASCOM.Meade.net case "enter": SharedResourcesWrapper.SendBlind("EK13"); break; + case "longenter": + SharedResourcesWrapper.SendBlind("EK10"); + break; case "mode": SharedResourcesWrapper.SendBlind("EK9"); break; @@ -229,7 +232,9 @@ namespace ASCOM.Meade.net case "goto": SharedResourcesWrapper.SendBlind("EK24"); break; - + case "longgoto": + SharedResourcesWrapper.SendBlind("EK25"); + break; case "0": //light and 0 SharedResourcesWrapper.SendBlind("EK48"); break;