recipe name filter
This commit is contained in:
@@ -43,7 +43,7 @@ namespace VisionBuilder.UI.IOCommander.Windows
|
||||
this.MinimizeBox = false;
|
||||
this.MaximizeBox = false;
|
||||
|
||||
// Create pin indicators for input pins 1-20 and output pins 1-20 (20 rows, 2 columns)
|
||||
// Create pin indicators for input pins 0-19 and output pins 0-19 (20 rows, 2 columns)
|
||||
int pinSize = 18;
|
||||
int spacing = 2;
|
||||
int centerX = 140; // Center the graphics in the wider form
|
||||
@@ -55,8 +55,8 @@ namespace VisionBuilder.UI.IOCommander.Windows
|
||||
|
||||
for (int row = 0; row < 20; row++)
|
||||
{
|
||||
int inputPin = row + 1; // Input pins numbered 1-20
|
||||
int outputPin = row + 1; // Output pins numbered 1-20
|
||||
int inputPin = row; // Input pins numbered 0-19
|
||||
int outputPin = row; // Output pins numbered 0-19
|
||||
|
||||
// Left column (input pins)
|
||||
var leftIndicator = new PinIndicator(inputPin, true)
|
||||
|
||||
Reference in New Issue
Block a user