-
Notifications
You must be signed in to change notification settings - Fork 52
Description
Hello everyone I am making a project of human following robot and for that I am using dwm1000 UWB modules. Recently, I am trying to do localization. My experimental setup contains 3 anchors and one tag. I calculated antenna delay by following the instructions given in this library. After calculating antenna delay of each anchor I was getting each distance from all anchors to the tag individually very accurate.
After that I tested "ESP32_UWB_tag2D_3A" code present in the library for localization but after uploading this code in tag I came to knew that I was getting x and y coordinates of tag extremely inaccurate for example:
Actual Distance from tag:
A1 = 1.30
A2 = 1.35
A3 = 1.10
Distance which I was getting on tag serial monitor:
A1 = 1.01 approx
A2 = 0.90 - 1.10 approx
A3 = 1.15 approx
Actually I observe that I get the distance accurate only when one anchor is on but when multiple anchors are on then I get all distances inaccurate. It seems to be signal collision when multiple anchors are on and this might be the reason for inaccurate x and y coordinates of tag as all distances becomes extremely inaccurate when multiple anchors are on. So can anyone help me out to get all distances accurate and x and y coordinates accurate even multiple anchors are on so I can go ahead with localization and following. An response will be appreciated. Thanks.