0

誰かがarduinoプロジェクトからnetmfにコードを翻訳するのを手伝ってくれませんか..これはarduinoプロジェクトから得たものです:

int angle = 3000//angle is int 500 to 5500

unsigned int temp;
byte pos_hi,pos_low;

temp = angle & 0x1f80;  //get bits 8 thru 13 of position
pos_hi = temp >> 7;     //shift bits 8 thru 13 by 7
pos_low = angle & 0x7f; //get lower 7 bits of position

それは C# の netmf プロジェクトにどのように変換されますか?

4

1 に答える 1