Offline
Newbie
Karma: 0
Posts: 22
|
 |
« on: November 19, 2012, 03:21:45 pm » |
I do not know how to convert a number to binary.
I have seen the way with Serial.print(x,bin) but what I want is a variable to take the binary and not just to print it.
For example : When x is a random number y = (x, BIN);
|
|
|
|
|
Logged
|
|
|
|
|
California
Offline
Edison Member
Karma: 41
Posts: 1872
|
 |
« Reply #1 on: November 19, 2012, 03:30:39 pm » |
Numbers are already stored in binary.
Perhaps you should give us a broader sense of what you are trying to do, rather than how you are trying to do it.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Edison Member
Karma: 15
Posts: 1009
Arduino rocks
|
 |
« Reply #2 on: November 19, 2012, 03:44:14 pm » |
unsigned long convToBin(unsigned int x) {' unsigned long ret = 0; for (unsigned char i=0; i<sizeof(x)*8; i++) { if (x & _BV(i)) ret += 10 * i; } }
untested
|
|
|
|
|
Logged
|
|
|
|
|
UK
Offline
Tesla Member
Karma: 89
Posts: 6391
-
|
 |
« Reply #3 on: November 19, 2012, 04:41:56 pm » |
I do not know how to convert a number to binary.
It's not clear what you are trying to do. My guess is that you are trying to produce an ascii string of '1' and '0' characters containing a binary textual representation of an integer, similar to what you'd get if you printed the number to the Serial port with binary format. Is that right?
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Edison Member
Karma: 114
Posts: 2205
|
 |
« Reply #4 on: November 19, 2012, 05:26:37 pm » |
If you are talking about a binary string: 3 = "00000011" for example, the following does it: unsigned char *hex2binstr(unsigned char *str, unsigned char dat) { unsigned char mask = 0x80; do { if (dat & mask) *str='1'; //the bit is 1 else *str='0'; //otherwise it is 0 str+=1; //increment the pointer mask = mask >> 1; //shift mask } while (mask); return str; }
It converts an unsigned char into an 8-char string. You can then build on top of it routines that convert more complex structures into str.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Edison Member
Karma: 114
Posts: 2205
|
 |
« Reply #5 on: November 19, 2012, 05:56:23 pm » |
Here is what you can do to convert a short / long: //convert a char type to a binary string unsigned char * uc2binstr(unsigned char * str, unsigned char dat) { ... }
//convert a short type to binary string unsigned char * us2binstr(unsigned char *str, unsigned short dat) { str=uc2binstr(str, dat >> 8); //convert msb first str=uc2binstr(str, dat); return str; }
//convert a long type to binary string unsigned char * ul2binstr(unsigned char *str, unsigned long dat) { str=us2binstr(str, dat >> 16); //convert msw first str=us2binstr(str, dat); return str; }
On longer types, you can simply use one of those routines successively, starting with the msb/msw first.
|
|
|
|
|
Logged
|
|
|
|
|
|
|
France
Online
God Member
Karma: 19
Posts: 619
Scientia potentia est.
|
 |
« Reply #7 on: November 20, 2012, 12:17:24 am » |
Hello and welcome, maybe you just want to know how to write a number as binary? By adding "0b" prefix (or "B" prefix, for bytes (8 bits) only), like this: int x = 0b0011000000111001; //binary notation for 12345 byte y = B01111011; //binary notation for 123 byte z = 0b01111011; //also valid of course
More infos here: http://en.wikipedia.org/wiki/Binary_numeral_system
|
|
|
|
« Last Edit: November 20, 2012, 12:25:20 am by guix »
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 22
|
 |
« Reply #8 on: November 21, 2012, 08:51:55 am » |
I do not know how to convert a number to binary.
It's not clear what you are trying to do. My guess is that you are trying to produce an ascii string of '1' and '0' characters containing a binary textual representation of an integer, similar to what you'd get if you printed the number to the Serial port with binary format. Is that right? First of all, thank you all for the immediate correspondence and really sorry for mine late correspondence, but I work too much and the free time is little." PeterH , Yes ! This is what I want. For example I have an integer x = 100 and I want another variable y to take the binary of 100 => "0 1 1 0 0 1 0 0". As I am a newbie I do not know many things. Please be as simplest and more detailed (regarding commands) as you can!
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 138
Posts: 19067
I don't think you connected the grounds, Dave.
|
 |
« Reply #9 on: November 21, 2012, 09:03:14 am » |
For example I have an integer x = 100 and I want another variable y to take the binary of 100 byte y = x;
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 22
|
 |
« Reply #10 on: November 25, 2012, 12:19:25 pm » |
For example I have an integer x = 100 and I want another variable y to take the binary of 100 byte y = x; Thank you for your answer but I am not sure that it works as when I create the program : int x= 100; void setup() { Serial.begin(9600); } void loop() { byte y = x; Serial.println (y); } It prints 100. Why ?
|
|
|
|
|
Logged
|
|
|
|
|
California
Offline
Edison Member
Karma: 41
Posts: 1872
|
 |
« Reply #11 on: November 25, 2012, 12:22:28 pm » |
Thank you for your answer but I am not sure that it works as when I create the program :
int x= 100; void setup() { Serial.begin(9600); } void loop() { byte y = x; Serial.println (y); }
It prints 100. Why ?
Because you told it to. What are you expecting it to do? Serial.print() and Serial.println() convert 100 to '1', '0' and '0'. to print it to the screen. You can use Serial.write and it will send the binary value of 100 to the screen, which is 'd'.
|
|
|
|
|
Logged
|
|
|
|
|
Seattle, WA USA
Online
Brattain Member
Karma: 316
Posts: 35521
Seattle, WA USA
|
 |
« Reply #12 on: November 25, 2012, 12:43:25 pm » |
If you want to print the binary representation of the value, you have to tell Serial.print() that. Look at the documentation for how.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 22
|
 |
« Reply #13 on: November 27, 2012, 06:09:22 am » |
If you want to print the binary representation of the value, you have to tell Serial.print() that. Look at the documentation for how.
Yes I know. Serial.print(y,bin). Something else I would like to know is about how can I separate a 16 bin value of a variable into 2 8bin variables. For example x = 0B1111111100000001, I would like y to be 0B11111111 and z = 0B00000001 in order to send them with shiftout (using 2 shift registers) to another chip.
|
|
|
|
|
Logged
|
|
|
|
|
Seattle, WA USA
Online
Brattain Member
Karma: 316
Posts: 35521
Seattle, WA USA
|
 |
« Reply #14 on: November 27, 2012, 06:15:20 am » |
Something else I would like to know is about how can I separate a 16 bin value of a variable into 2 8bin variables. For example x = 0B1111111100000001, I would like y to be 0B11111111 and z = 0B00000001 in order to send them with shiftout (using 2 shift registers) to another chip. So, you WERE able to find the reference page. Too bad you didn't spend just a little bit longer there. That's a page well worth spending more then 2 minutes at. You should at least familiarize your self with the available functions, even if you don't study things like highByte and lowByte. Just knowing that they are there is useful.
|
|
|
|
|
Logged
|
|
|
|
|
|