Skip to content

Commit

Permalink
Restore old default of "1000" as MaxPWM
Browse files Browse the repository at this point in the history
  • Loading branch information
arkypita committed Aug 9, 2023
1 parent 1e7d8b3 commit c0b1dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LaserGRBL/Core/GrblCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3390,7 +3390,7 @@ public bool LaserMode
}

public decimal MinPWM => ReadDecimal(Version11 ? 31 : -1, 0, 0, MAX_CONFIG_PWM);
public decimal MaxPWM => ReadDecimal(Version11 ? 30 : -1, 1, 1, MAX_CONFIG_PWM);
public decimal MaxPWM => ReadDecimal(Version11 ? 30 : -1, 1000, 1, MAX_CONFIG_PWM);
public decimal ResolutionX => ReadDecimal(Version9 ? 100 : 0, 250, 1, MAX_CONFIG_RESOLUTION);
public decimal ResolutionY => ReadDecimal(Version9 ? 101 : 1, 250, 1, MAX_CONFIG_RESOLUTION);
public decimal TableWidth => ReadDecimal(Version9 ? 130 : -1, 300, 1, MAX_CONFIG_SIZE);
Expand Down

0 comments on commit c0b1dce

Please sign in to comment.