Skip to content

Commit

Permalink
CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
garciadelcastillo committed Feb 27, 2019
1 parent d06da9d commit d4cd904
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 33 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
- [ ] `noTool` gets declared on every ABB program, even if not used. Fix this, and probably use `tool0` on compilation?
- [ ] Review if second attachments produce a TCP transformation without undoing the previous tool.

# v0.8.9
## BUILD 1429
- Fix Example files.

# v0.8.8
## BUILD 1428
- Revert `RobotCursor` to default `null` tool; this was giving a full other set of problems... Let's see what I break now by doing this...
Expand Down
22 changes: 0 additions & 22 deletions src/Machina.sln
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXAMPLE_OfflineCodeGenerati
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXAMPLE_StreamTargets", "Sample Projects\EXAMPLE_StreamTargets\EXAMPLE_StreamTargets.csproj", "{16AF5FDC-0CA2-4934-B565-FE7A53045BB5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXAMPLE_TUIO_DEMO", "Sample Projects\EXAMPLE_TUIO_DEMO\EXAMPLE_TUIO_DEMO.csproj", "{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXAMPLE_XBOX1Control", "Sample Projects\EXAMPLE_XBOX1Control\EXAMPLE_XBOX1Control.csproj", "{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -125,22 +121,6 @@ Global
{16AF5FDC-0CA2-4934-B565-FE7A53045BB5}.Release|Any CPU.Build.0 = Release|Any CPU
{16AF5FDC-0CA2-4934-B565-FE7A53045BB5}.Release|x64.ActiveCfg = Release|Any CPU
{16AF5FDC-0CA2-4934-B565-FE7A53045BB5}.Release|x64.Build.0 = Release|Any CPU
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Debug|x64.ActiveCfg = Debug|x64
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Debug|x64.Build.0 = Debug|x64
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Release|Any CPU.Build.0 = Release|Any CPU
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Release|x64.ActiveCfg = Release|x64
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C}.Release|x64.Build.0 = Release|x64
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Debug|x64.ActiveCfg = Debug|Any CPU
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Debug|x64.Build.0 = Debug|Any CPU
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Release|Any CPU.Build.0 = Release|Any CPU
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Release|x64.ActiveCfg = Release|Any CPU
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -155,7 +135,5 @@ Global
{B1AF7C8B-CFE5-4267-A1B2-ECBED63DBDD7} = {BA32CB47-9EAB-4191-9581-734ACC9633E7}
{9E155754-5524-45C8-A72E-43F472F502C0} = {BA32CB47-9EAB-4191-9581-734ACC9633E7}
{16AF5FDC-0CA2-4934-B565-FE7A53045BB5} = {BA32CB47-9EAB-4191-9581-734ACC9633E7}
{1D5CA94F-0209-4A42-BFBD-8818B5049B6C} = {BA32CB47-9EAB-4191-9581-734ACC9633E7}
{D85F7A35-B2DB-4840-A6B2-2E04FE3CA55F} = {BA32CB47-9EAB-4191-9581-734ACC9633E7}
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion src/Machina/Robot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Robot
/// <summary>
/// Build number.
/// </summary>
public static readonly int Build = 1428;
public static readonly int Build = 1429;

/// <summary>
/// Version number.
Expand Down
18 changes: 9 additions & 9 deletions src/Tests/TEST_NewAPITests/OfflineAPITests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ static void Main(string[] args)
{
Console.WriteLine("--> GENERAL TEST");

Robot arm = Robot.Create("ToolTesting", "UR");
Robot arm = Robot.Create("HelloRobot", "KUKA");

RotationTest(arm);
//RotationTest(arm);

//ToolTesting(arm);

//HelloRobot(arm);
HelloRobot(arm);

//ExternalAxes(arm);

Expand Down Expand Up @@ -90,7 +90,7 @@ static void Main(string[] args)
arm.Compile(arm.IsBrand("ABB") ? @"C:\offlineTests.prg" :
arm.IsBrand("UR") ? @"C:\offlineTests.script" :
arm.IsBrand("KUKA") ? @"C:\offlineTests.src" :
arm.IsBrand("ZMORPH") ? @"C:\offlineTests.gcode" : @"C:\offlineTests.machina", true, false);
arm.IsBrand("ZMORPH") ? @"C:\offlineTests.gcode" : @"C:\offlineTests.machina", true, true);

//List<string> code = arm.Export();
//foreach (string s in code) Console.WriteLine(s);
Expand Down Expand Up @@ -156,14 +156,14 @@ static public void HelloRobot(Robot arm)
{
arm.ControlMode("offline");

//arm.Message("Hello Robot!");
arm.SpeedTo(50);
arm.MoveTo(600, 0, 500);
arm.Message("Hello Robot!");
arm.SpeedTo(100);
arm.MoveTo(400, 300, 500);
arm.Rotate(0, 1, 0, -90);
arm.Move(0, 0, 250);
arm.Wait(2000);
//arm.AxesTo(0, 0, 0, 0, 90, 0);
arm.AxesTo(0, -90, -90, -90, 90, 90);
arm.AxesTo(0, 0, 0, 0, 90, 0);
//arm.AxesTo(0, -90, -90, -90, 90, 90);


//List<string> program = arm.Compile();
Expand Down
2 changes: 1 addition & 1 deletion src/Tests/TEST_StreamAPITests/StreamAPITests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void Main(string[] args)
//arm.ActionIssued += LogEvent;

Machina.Logger.SetLogLevel(3);

Machina.Logger.WriteLine += Console.WriteLine;

arm.MotionUpdate += LogEvent;

Expand Down

0 comments on commit d4cd904

Please sign in to comment.