I have integers from 0 to 255, and I need to pass them along to an OutputStream encoded as unsigned bytes. I've tried to convert using a mask like so, but if i=1, the other end of my stream (a serial device expecting uint8_t) thinks I've sent an unsigned integer = 6.

OutputStream out;
public void writeToStream(int i) throws Exception {
    out.write(((byte)(i & 0xff)));
}

I'm talking to an Arduino at /dev/ttyUSB0 using Ubuntu if this makes things any more or less interesting.

Here's the Arduino code:

uint8_t nextByte() {
    while(1) {
    if(Serial.available() > 0) {
        uint8_t b =  Serial.read();
      return b;
     }
    }
}

I also have some Python code that works great with the Arduino code, and the Arduino happily receives the correct integer if I use this code in Python:

class writerThread(threading.Thread): 
    def __init__(self, threadID, name):
        threading.Thread.__init__(self)
        self.threadID = threadID
        self.name = name
    def run(self):
        while True:
            input = raw_input("[W}Give Me Input!")
            if (input == "exit"):
               exit("Goodbye");
            print ("[W]You input %s\n" % input.strip())
            fval = [ int(input.strip()) ]
            ser.write("".join([chr(x) for x in fval]))

I'd also eventually like to do this in Scala, but I'm falling back to Java to avoid the complexity while I solve this issue.

link|improve this question

67% accept rate
Btw: (byte(i & 0xFF) is same as (byte)i many IO functions take an int in any case so you can just do OutputStream.write(i) and it writes the lowest 8-bits. i.e. it doesn't matter if you want it to be a signed or unsigned value. i.e. you are making the issue too complicated because it all works out the same. ;) – Peter Lawrey Mar 20 '11 at 8:04
It seems that DataOutputStream will be useful (as soon as you need to send something more complex than bytes). – Blaisorblade Mar 26 '11 at 21:46
feedback

2 Answers

up vote 0 down vote accepted

Cast, then mask: ((byte)(i)&0xff)

But, something is very strange since:

(dec)8 - (binary)1000
(dec)6 - (binary)0110

[edit]
How is your Arduino receiving 6 (binary)0110 when you send 1 (binary)0001?
[/edit]

link|improve this answer
out.write(((byte)i) & 0xff); seems to do the same thing. The device on the other end still interprets (i=1) like I sent a 6. – Martin Mar 20 '11 at 3:46
1  
you have bigger problems than casting in this case. – KevinDTimm Mar 20 '11 at 3:50
I'm updating the question to show the arduino code. I should add that it works great with the current Arduino code if I use python and pyserial. – Martin Mar 20 '11 at 3:51
1  
Tried a different arduino and it worked. I think something is wrong with this one! – Martin Mar 20 '11 at 3:56
1  
@Martin: If your problem is solved, please either add a self-answer and accept it, or edit your question with the solution. So others don't spend their time working on an unneeded answer. – Software Monk Mar 20 '11 at 6:05
show 2 more comments
feedback

I think you just want out.write(i) here. Only the eight low-order bits are written from the int argument i.

link|improve this answer
It looks like you're correct that out.write(i) is equivalent. Unfortunately, I still don't get the right byte value, though. The serial device tells me it got a uint8_t = 6. – Martin Mar 20 '11 at 3:49
Do all other integers 0 to 255 work? If none do I suspect you're dealing with not the right byte somehow (headers or what not). If all the rest work then that's really odd. – WhiteFang34 Mar 20 '11 at 3:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.