Skip to content

Commit

Permalink
Change device mapping (#397)
Browse files Browse the repository at this point in the history
Printer should stay at J4 and bill validator at J5
physical proximity reasons
  • Loading branch information
RafaelTaranto authored and joshmh committed Sep 24, 2019
1 parent 978eb45 commit a01c4e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hardware/codebase/upboard/device_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"billValidator": {
"rs232": {
"device": "/dev/ttyJ4"
"device": "/dev/ttyJ5"
}
},
"billDispenser": {
Expand Down
2 changes: 1 addition & 1 deletion tools/nipponPrinterTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const portOptions = {
}

const args = minimist(process.argv.slice(2))
const device = args.dev || '/dev/ttyJ5'
const device = args.dev || '/dev/ttyJ4'
const qrcodeStr = args.str || 'https://lamassu.is'
const port = new SerialPort(device, portOptions)

Expand Down

0 comments on commit a01c4e2

Please sign in to comment.