Search found 21 matches

by James
Fri Jan 10, 2020 9:33 am
Forum: General Discussion
Topic: R and L setting by serial
Replies: 15
Views: 24150

Re: R and L setting by serial

I got a copy of the pre-release for the next update of the python library. These are the defined functions for reading the L and R values. def GetM1LR(self,address): date = self._read_n(address,self.Cmd.GETM1LR,2) if data[0]: return (1,data[1]/0x1000000,data[2]/0x1000000) return (0,0,0) def GetM2LR...