Write on thermal printer device in golang









up vote
1
down vote

favorite












I have a thermal printer(ESC/POS) already configured on my linux machine and using the terminal command (as root) I can make it print:



echo "Hello!" > /dev/usb/lp0


However, doing the same procedure in golang nothing happens:



package main

import (
"fmt"
"os"
)

func main()
fmt.Println("Hello Would!")

f, err := os.Open("/dev/usb/lp0")

if err != nil
panic(err)


defer f.Close()

f.Write(byte("Hello world!"))



What am I doing wrong?










share|improve this question





















  • Maybe something like godoc.org/github.com/google/gousb?
    – grooveplex
    Nov 10 at 0:17














up vote
1
down vote

favorite












I have a thermal printer(ESC/POS) already configured on my linux machine and using the terminal command (as root) I can make it print:



echo "Hello!" > /dev/usb/lp0


However, doing the same procedure in golang nothing happens:



package main

import (
"fmt"
"os"
)

func main()
fmt.Println("Hello Would!")

f, err := os.Open("/dev/usb/lp0")

if err != nil
panic(err)


defer f.Close()

f.Write(byte("Hello world!"))



What am I doing wrong?










share|improve this question





















  • Maybe something like godoc.org/github.com/google/gousb?
    – grooveplex
    Nov 10 at 0:17












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have a thermal printer(ESC/POS) already configured on my linux machine and using the terminal command (as root) I can make it print:



echo "Hello!" > /dev/usb/lp0


However, doing the same procedure in golang nothing happens:



package main

import (
"fmt"
"os"
)

func main()
fmt.Println("Hello Would!")

f, err := os.Open("/dev/usb/lp0")

if err != nil
panic(err)


defer f.Close()

f.Write(byte("Hello world!"))



What am I doing wrong?










share|improve this question













I have a thermal printer(ESC/POS) already configured on my linux machine and using the terminal command (as root) I can make it print:



echo "Hello!" > /dev/usb/lp0


However, doing the same procedure in golang nothing happens:



package main

import (
"fmt"
"os"
)

func main()
fmt.Println("Hello Would!")

f, err := os.Open("/dev/usb/lp0")

if err != nil
panic(err)


defer f.Close()

f.Write(byte("Hello world!"))



What am I doing wrong?







linux go thermal-printer






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 10 at 0:13









Augusto Pimenta

134




134











  • Maybe something like godoc.org/github.com/google/gousb?
    – grooveplex
    Nov 10 at 0:17
















  • Maybe something like godoc.org/github.com/google/gousb?
    – grooveplex
    Nov 10 at 0:17















Maybe something like godoc.org/github.com/google/gousb?
– grooveplex
Nov 10 at 0:17




Maybe something like godoc.org/github.com/google/gousb?
– grooveplex
Nov 10 at 0:17












1 Answer
1






active

oldest

votes

















up vote
8
down vote



accepted










As described in the documentation os.Open() opens a file read-only.



You would have discovered the problem if you had checked the return from your Write() call. Always check errors. Don't ignore them, even in tiny programs like this; they will give you a clue as to what is wrong.



To fix the problem, open the device special for writing with os.OpenFile().



f, err := os.OpenFile("/dev/usb/lp0", os.O_RDWR, 0)





share|improve this answer
















  • 2




    upvote for Always check errors :)
    – Dmitry Harnitski
    Nov 10 at 0:59










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53234875%2fwrite-on-thermal-printer-device-in-golang%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
8
down vote



accepted










As described in the documentation os.Open() opens a file read-only.



You would have discovered the problem if you had checked the return from your Write() call. Always check errors. Don't ignore them, even in tiny programs like this; they will give you a clue as to what is wrong.



To fix the problem, open the device special for writing with os.OpenFile().



f, err := os.OpenFile("/dev/usb/lp0", os.O_RDWR, 0)





share|improve this answer
















  • 2




    upvote for Always check errors :)
    – Dmitry Harnitski
    Nov 10 at 0:59














up vote
8
down vote



accepted










As described in the documentation os.Open() opens a file read-only.



You would have discovered the problem if you had checked the return from your Write() call. Always check errors. Don't ignore them, even in tiny programs like this; they will give you a clue as to what is wrong.



To fix the problem, open the device special for writing with os.OpenFile().



f, err := os.OpenFile("/dev/usb/lp0", os.O_RDWR, 0)





share|improve this answer
















  • 2




    upvote for Always check errors :)
    – Dmitry Harnitski
    Nov 10 at 0:59












up vote
8
down vote



accepted







up vote
8
down vote



accepted






As described in the documentation os.Open() opens a file read-only.



You would have discovered the problem if you had checked the return from your Write() call. Always check errors. Don't ignore them, even in tiny programs like this; they will give you a clue as to what is wrong.



To fix the problem, open the device special for writing with os.OpenFile().



f, err := os.OpenFile("/dev/usb/lp0", os.O_RDWR, 0)





share|improve this answer












As described in the documentation os.Open() opens a file read-only.



You would have discovered the problem if you had checked the return from your Write() call. Always check errors. Don't ignore them, even in tiny programs like this; they will give you a clue as to what is wrong.



To fix the problem, open the device special for writing with os.OpenFile().



f, err := os.OpenFile("/dev/usb/lp0", os.O_RDWR, 0)






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 10 at 0:50









Michael Hampton

7,15733168




7,15733168







  • 2




    upvote for Always check errors :)
    – Dmitry Harnitski
    Nov 10 at 0:59












  • 2




    upvote for Always check errors :)
    – Dmitry Harnitski
    Nov 10 at 0:59







2




2




upvote for Always check errors :)
– Dmitry Harnitski
Nov 10 at 0:59




upvote for Always check errors :)
– Dmitry Harnitski
Nov 10 at 0:59

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53234875%2fwrite-on-thermal-printer-device-in-golang%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20