Skip to content

Commit

Permalink
Update port in example to the default port for ESCPOS protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevp authored Aug 18, 2022
1 parent 04f95b3 commit 818b145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This means that Bluetooth, WiFi, Ethernet, USB, and Serial printers are all usab
```csharp
// Ethernet or WiFi (This uses an Immediate Printer, no live paper status events, but is easier to use)
var hostnameOrIp = "192.168.1.50";
var port = 9000;
var port = 9100;
var printer = new ImmediateNetworkPrinter(new ImmediateNetworkPrinterSettings() { ConnectionString = $"{hostnameOrIp}:{port}", PrinterName = "TestPrinter" });

// USB, Bluetooth, or Serial
Expand Down

0 comments on commit 818b145

Please sign in to comment.