Bitcraze Mysteries - Volume 1
Posted: Tue Dec 30, 2014 3:32 am
On the side of the new Crazyflie 2.0 box there's an aphorism ("Make your ideas fly") and a little string of binary (10111100).
Our old friend python can help us out. Converting a base 2 int to hexadecimal reveals the answer:
Result:
0xbc
Ah ha! It's the abbreviation for Bitcraze in hexadecimal (and incidentally, also the Bitcraze logo). A Bitcraze mystery solved!
It's clear what the aphorism means but what about the binary string!?Our old friend python can help us out. Converting a base 2 int to hexadecimal reveals the answer:
Code: Select all
python -c 'print hex(int("10111100", 2))'
0xbc
Ah ha! It's the abbreviation for Bitcraze in hexadecimal (and incidentally, also the Bitcraze logo). A Bitcraze mystery solved!
