Skip to content

Commit

Permalink
Merge pull request #92 from ar7bd/master
Browse files Browse the repository at this point in the history
Allow spotWidth or spotHeight to be 0
  • Loading branch information
mcm1957 authored Dec 23, 2023
2 parents c13404f + ee5effd commit 0b14c3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ function prepareRobotsStructure(robots, devices, callback) {
read: true,
write: true,
def: 100,
min: 100,
min: 0,
unit: 'cm',
role: 'level.width'
}
Expand All @@ -650,7 +650,7 @@ function prepareRobotsStructure(robots, devices, callback) {
read: true,
write: true,
def: 100,
min: 100,
min: 0,
unit: 'cm',
role: 'level.height'
}
Expand Down

0 comments on commit 0b14c3c

Please sign in to comment.