ibaiGorordo / AWR1642-Read-Data-Python-MMWAVE-SDK-2

Python program to read and plot the data in real time from the AWR1642 and IWR1642 mmWave radar boards (Texas Instruments).
MIT License
137 stars 57 forks source link

Left and right reversed #32

Closed bluems closed 3 years ago

bluems commented 3 years ago

Hi,

I use the board based on IWR1642, Ubuntu 20.04 and Python 3.8. When I use your code, The data your code has responded to will appear reversed left and right. Compared to TI's official demo(mmWave_Demo_Visualizer), it looks reversed.

I tested readData_AWR1642.py

ibaiGorordo commented 3 years ago

Hi,

you just need to modify line 287 to:

x = detObj["x"]
bluems commented 3 years ago

thanks your answer!