Gowerlabs / LibFTD2XX.jl

Julia wrapper for FTDI D2XX drivers.
Other
6 stars 1 forks source link

how write the Vector{UInt8} codes ?? #26

Closed zsz02 closed 5 years ago

zsz02 commented 5 years ago

直接角度控制 执行水平:FF 01 00 4B 00 00 4C 直接角度控制 执行水平:FF 01 00 4B 0B B8 0F 设置预置位001:FF 01 00 03 00 01 05

write(handle, Vector{UInt8}(0xFF,0x01,0x00,0x4B,0x00,0x00,0x4C)) is wrong ,

how do this ??

zsz02 commented 5 years ago

I get it. UInt8[0xFF;0x01;0x00;0x4B;0x00;0x00;0x4C]