Skip to content

Commit

Permalink
Added new printer config for Brother-QL800
Browse files Browse the repository at this point in the history
  • Loading branch information
webapps-sptech committed May 16, 2024
1 parent f33606d commit 7278c82
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ The kiosk will display a configuration page initially.
* Download and install the driver from [here](https://support.brother.com/g/b/downloadtop.aspx?c=us_ot&lang=en&prod=lpql820nwbeus)
* Go into printer preferences and set the label size to paper size = 62mm, 62mm (width), 100mm (length), 3mm (Feed)

### QL-800 - Config type = ```brotherQL800```
* Download and install the driver from [here](https://support.brother.com/g/b/downloadtop.aspx?c=us_ot&lang=en&prod=lpql800eus)
* Go into printer preferences and set the label size to paper size = 62mm, 62mm (width), 100mm (length), 3mm (Feed)

# Application Configuration
The application configuration file can be found in ```<USER DIRECTORY>/kardinia-kiosk/config.conf```. The file contains the following information:
* ```printerType``` The printer type to use, see supported printer types above. (Can be set in the application)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kardinia-kiosk-checkin",
"version": "2.4.4",
"version": "2.4.5",
"description": "Kardinia Checkin Kiosk",
"main": "app.js",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions printerHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ const supportedPrinters = {
"height": 100,
"rotate": false
},
"brotherQL800": {
friendlyName: "Brother QL800",
USBName: "Brother QL-QL800",
// printOptions: ['-print-settings "fit"'],
"width": 62,
"height": 100,
"rotate": false
},
"brotherQL820NWB": {
friendlyName: "Brother QL820NWB",
USBName: "Brother QL-820NWB",
Expand Down
4 changes: 3 additions & 1 deletion versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ First stable release.
## v2.4.3
* Added extra functionality to provide age from contact's dob as #computedAge
## v2.4.4
* Added a feature where the poster kiosk window is disable if screen count is 1
* Added a feature where the poster kiosk window is disable if screen count is 1
## v2.4.5
* Added new printer config for Brother-QL800

0 comments on commit 7278c82

Please sign in to comment.