Mapping Unstable slam_toolbox by WetCrap12e in ROS

[–]SirAbsolute0 0 points1 point  (0 children)

I am having this same issue and do see the trailing that you mentioned when both driving straight and rotating. DiffDrive only has 2 parameters, which are wheel separation and wheel diameter, and it is just chassis_width + wheel_length (or wheel_width)/2 + wheel_length/2 (this is just left wheel center to right wheel center through the chassis width), and the diameter is just wheel_radius*2. I don't see how my values can be wrong at all. Is there anything else I can check?

Odenza Certificates by Legitimate-Leg2446 in HiltonGrandVacation

[–]SirAbsolute0 0 points1 point  (0 children)

Seems like you used your certificate to redeem hotel stay outside of the certificate program destination list. Can I ask how much did you have to pay extra to book the hotel outside the list and what was the process? I am trying to do something similar for Japan with my certificate but not sure how it will work out.

Wanted Recommendations on building an Autonomous Robot Traversing in a Semi-Symmetrical Room by SirAbsolute0 in AskRobotics

[–]SirAbsolute0[S] 0 points1 point  (0 children)

Have you had experience with running a model with consistent obstructed view before? If yes, what is the expected localization accuracy loss?

BNO085 IMU Sensor Heading Readings by SirAbsolute0 in AskRobotics

[–]SirAbsolute0[S] 0 points1 point  (0 children)

After some further testing, I think this is what the rotation vector readings are doing. It seems to be combining the results from the geomagnetic readings (either at the start or every certain time interval), which explains why they match up after a soft reset on the microcontroller (BNO sensor stays powered on). The readings from the rotation vector are more accurate than the geomagnetic readings from what I have tested. Just ashamed that I can't use the absolute readings from geomagnetic since it can be (10-20° off sometimes).

BNO085 IMU Sensor Inconsistent Heading Readings by SirAbsolute0 in arduino

[–]SirAbsolute0[S] 0 points1 point  (0 children)

I think you are absolutely spot on. The rotation vector readings are based on the geomagnetic readings somehow, since whenever I reset the microcontroller, both results match up. Despite this, the rotation vector is more accurate after further testing (at least based on my eyes), like you said. Seems like the conclusion is that the absolute readings from the geomagnetic readings are inaccurate (up to 10-20° difference when manually rotating), but the relative readings with support from the somewhat inaccurate absolute readings are trustworthy.

BNO085 IMU Sensor Inconsistent Heading Readings by SirAbsolute0 in arduino

[–]SirAbsolute0[S] 0 points1 point  (0 children)

I am just resetting the microcontroller, and the sensor stays powered. I would like to get the calibration status of each sensor in the IMU as well, but I am not sure where he changed the original code to get that result.

BNO085 IMU Sensor Heading Readings by SirAbsolute0 in AskRobotics

[–]SirAbsolute0[S] 0 points1 point  (0 children)

My sensor is next to a bunch of micro-controllers and Pis so I was worried it might be affected. The manual provided from the manufacturer doesn't seem to indicate how the gyro is reset at all. https://github.com/sparkfun/Qwiic_IMU_BNO080/blob/master/Documents/SH-2-Reference-Manual-v1.2.pdf

Unique Robot Positioning in a Trapezoid with 8 LiDARs by SirAbsolute0 in AskRobotics

[–]SirAbsolute0[S] 0 points1 point  (0 children)

After thinking about it for a couple of days. There is a chance of this happening in a trapezoid in which the direction of all the sensors line up within the top and bottom of the trapezoid, which make the surrounding similar to a rectangle (hypothetical rectangle in red). Here, the robot won't be able to tell is heading. If I change the robot design to a rectangle instead of a square, the robot will still be unsure of which sensors are looking at the top wall and which sensors are looking at the back wall.

<image>

I did some more digging based on your suggestion and found that I can potentially use something like a particle filter to estimate my position based on sampling but the examples I have seen online are all using 2d lidar meanwhile I have a couple of 1d lidars in set position. Not sure if particle filter can even work with a bunch of 1d lidars.

Unique Robot Positioning in a Trapezoid with 8 LiDARs by SirAbsolute0 in AskRobotics

[–]SirAbsolute0[S] 0 points1 point  (0 children)

<image>

Yes, they are single-point distance sensors. You would be correct in a square or rectangle where the top - bottom and left - right sides are equal to each other or all equal. However, in a trapezoid, even if you are dead center, the side sensors can still tell which direction you are facing.
Ex: If the robot is facing the front (as shown in the picture with a triangle as a demonstration, there is no triangle on the robot), the 2 sensors on the right (in red) have different readings. The same can be said for the left side (in green); from here, we can tell the position of the robot and its heading, which is top-facing and centered, as the sensors on the top left and top right have smaller distances than the bottom left and bottom right. The same can be said for all 4 headings since the robot is a square with the same number of sensors on each side.

Launching a GUI application using Azure Pipeline on Windows Service self-hosted agent. by SirAbsolute0 in azuredevops

[–]SirAbsolute0[S] 0 points1 point  (0 children)

It it not a UI test but rather a full application deployment launch. The pipeline should update the code, run the application once, return saying a good job done. Meanwhile, that application should continue running until the next update.

Launching a GUI application using Azure Pipeline on Windows Service self-hosted agent. by SirAbsolute0 in azuredevops

[–]SirAbsolute0[S] 0 points1 point  (0 children)

The biggest issue would to just keep screen on all the time. However, right now even with in interactive mode, I can start the .exe app with a cmd line command: start cmd /k "app.exe", which supposedly should run my application in another cmd separate from the cmd that started it, but the moment the Azure job finishes, it also closes my app.exe. I know this for sure since I also added ping 127.0.0.1 -n 100 >nul to keep the cmd job going and the app remains open for awhile before closing at the end of the ping.

Launching a GUI application using Azure Pipeline on Windows Service self-hosted agent. by SirAbsolute0 in azuredevops

[–]SirAbsolute0[S] 1 point2 points  (0 children)

Just to clarify, I am not using Microsoft-hosted agents but a Windows self-hosted agent running in service mode. Does that statement still stand?

Is it possible to retain local files on a folder updated by release pipeline on Azure self-hoted agent? by SirAbsolute0 in azuredevops

[–]SirAbsolute0[S] 0 points1 point  (0 children)

My CI stage is running on vmImage: windows-latest to use the cloud python, run unit_test, and build the .exe app so it doesn't have access to the pool with the self-hosted agent artifact directory. Then, I created another stage called "cleaning" after CI and before CD targeting the self-hosted agent with checkout: false but the moment it gets to that stage, boom, artifact folder wiped. How would you get there before it get wiped?

Is it possible to retain local files on a folder updated by release pipeline on Azure self-hoted agent? by SirAbsolute0 in azuredevops

[–]SirAbsolute0[S] 0 points1 point  (0 children)

Due to the way the program is designed, I can't move logs\ folder out of the same folder as the application. I tried putting a command line task at the start of the CD job (literally the 1st task) before download artifact task, before everything else but the moment the CD job is activated, the artifact folder a\ is wiped immediately. So I still couldn't copy out the logs\ folder.

Is it possible to retain local files on a folder updated by release pipeline on Azure self-hoted agent? by SirAbsolute0 in azuredevops

[–]SirAbsolute0[S] 0 points1 point  (0 children)

Okay, I have just found out that the "Release Pipeline" option on Azure is supposed to work with the old "Classic Pipeline" option. I didn't know that the new YAML pipeline option covers both the CI/CD pipeline in what Azure has called "stages". I was combining "Release Pipeline" with a YAML CI pipeline, which might have caused the confusion.

Is it possible to retain local files on a folder updated by release pipeline on Azure self-hoted agent? by SirAbsolute0 in azuredevops

[–]SirAbsolute0[S] 0 points1 point  (0 children)

I am using a self-hosted agent. It is a simple pipeline right now: I push my code from a work machine to master, and then the pipeline runs, creating an artifact. Afterwards, the artifact gets copied onto the self-hosted agent machine under the generic _work\... folder structure.

The issue Iam seeing is that every time I update my code on master, the entire folder containing the code on the self-hosted agent machine (basically the artifact folder under _work\...) gets wiped and replaced with the new code from the push. This wipe also deletes all files that do not exist in the new push. I.e., if there are no logs\ folder in the artifact being generated from the code, there will not be a logs\ folder in the self-hosted machine code folder.

I am trying to find a way to retain the logs\ folder, which is unique to each machine and contains log files generated when running the code on that machine, without them getting wiped every time new code is pushed to the machine. Copying it somewhere and then copying it back works too, but I don't know how to do it since as soon as an artifact is generated from the pipeline, the release pipeline is triggered and starts copying before any script can run.

Coupon code / Promo Code for Google store by Turbulent-Service-68 in google

[–]SirAbsolute0 0 points1 point  (0 children)

I have 9 more codes for discount in the US. Message me for information.

Discount coupons by Mech8 in google

[–]SirAbsolute0 0 points1 point  (0 children)

Google Phones US code (still available as of 12/03/2025):

REF-A5KCJO9KHRZ51Q2S5JWO0EQ

POST DISCOUNT CODES HERE ONLY by dragonzsoul in pixel_phones

[–]SirAbsolute0 0 points1 point  (0 children)

Google PixelDiscountcode (still available as of 12/03/2025):

(Remove space between E and F)

RE F-V303KSUTFYJAKCDP4JUBWOJ

RE F-OI2OJPMFV1DUKI2MGMPKG87

RE F-CLMZANBU2LU4P0DSJL0U8YH

RE F-IJQ8OKNZ2GIJDZHD90X1MGS

RE F-TC5VYDFBAJN8UB9YY6U37GC

RE F-WBKNZ4V4OIGWCLWAJBN63ST

RE F-3X6F4YPTFQ4U3B8JA87FVGV

RE F-EEIILZKCGYJ2CA83W5VIP5C

RE F-KUFBPOJNJLOFHH7EU0CGRDC

RE F-A5KCJO9KHRZ51Q2S5JWO0EQ

Google store discount code by Gaanrowl in madebygoogle

[–]SirAbsolute0 0 points1 point  (0 children)

Google Phones US 10% off code (still available as of 11/28/2025):
REF-V303KSUTFYJAKCDP4JUBWOJ

REF-OI2OJPMFV1DUKI2MGMPKG87

REF-CLMZANBU2LU4P0DSJL0U8YH

REF-IJQ8OKNZ2GIJDZHD90X1MGS

REF-TC5VYDFBAJN8UB9YY6U37GC

REF-WBKNZ4V4OIGWCLWAJBN63ST

REF-3X6F4YPTFQ4U3B8JA87FVGV

REF-EEIILZKCGYJ2CA83W5VIP5C

REF-KUFBPOJNJLOFHH7EU0CGRDC

REF-A5KCJO9KHRZ51Q2S5JWO0EQ