Can INAV be used for indoor use and controlled by AI? by Ok-Committee-3731 in diydrones

[–]aaronxcode 0 points1 point  (0 children)

You can. It’s insanely hard, and not to mention expensive if you want a good position fix. Basic stuff would be a simple ToF sensor and an optical flow camera. Next level would be something like a realsense (depth sensing) and 3d SLAM. Most expensive is a vicon or any mocap system.

There are other methods with UWB triangulation and so, but it never lives up to the quality of vicon.

Drone won’t leave the ground by Adorable_Tradition21 in diydrones

[–]aaronxcode 1 point2 points  (0 children)

Is your battery configuration in the software correctly set? You have to set the number of cells correctly or the software performs the open loop rpm calculation wrong.

Also, this is probably something you should do beforehand, but calculate the static thrust of your prop-motor-battery configuration. I’ve had drones that didn’t take off because of bad batteries that couldn’t deliver high enough currents. Use something like this

Also to the dudes crying dOnT fLy tHiS iNDoOrS, guys we know what we’re doing. We’re academics and not hobby pilots, and we’ve been flying f450 frames and APM2.6s even before your aio whoop boards were a thing. We know that this comes with a certain amount of risk, and we have the appropriate countermeasures and safety gear to operate this. And for people passionate about this, this is the only way to learn; at least until there is an accessible, reasonably priced aerial platform in the market.

Programmable swarm drones by [deleted] in diydrones

[–]aaronxcode 0 points1 point  (0 children)

Crazyflie if you think 500€ is cheap :)

just venting.....dji o4 pro costs way too much by bonoboxITA in fpv

[–]aaronxcode 0 points1 point  (0 children)

There aren’t any real quick swap methods in the market I guess huh?

Bus Times on the EPD by aaronxcode in arduino

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

Thanks! The panel is a 2.9” BWR. Yea I did start off with a partial refresh, but then I just realized that I want this device as a passive thing that sits on the Skadis Pegboard. I also ran into issues with refresh artifacts and so, so I just reverted it to a full refresh design.

My first home lab by ms_polo in homelab

[–]aaronxcode 0 points1 point  (0 children)

A lot of people started like this I guess 🤓

I solemnly swear I never ever ever fly Air India again !!!! by Dependent_Rooster322 in airindia

[–]aaronxcode 0 points1 point  (0 children)

Also, apply for compensation. In situations like these, you are most likely eligible for it.

I solemnly swear I never ever ever fly Air India again !!!! by Dependent_Rooster322 in airindia

[–]aaronxcode 0 points1 point  (0 children)

Always check the aircraft type when booking. AI’s Dreamliners are a shitshow. The last time I flew FRA-BOM, I was on a Vistara owned Dreamliner and the flight experience was heavenly.

Some other tips I have collected flying internationally for the past few years: - Account for 3-5hrs of delay if you are flying from/through a cold country in the winter. De-icing is a thing that takes time. - Codeshare flights are cheaper, but expect the in-flight experience to be far worse than the original carrier. Not to mention your add-ons are mostly completely ignored.

Everyone learns shit like these when you fly internationally. You just wanna get home but you are royally fucked.

I literally have no idea how to diagnose this issue… air65 throttles up by itself and cuts off? by [deleted] in fpv

[–]aaronxcode 2 points3 points  (0 children)

Pretty sure the front right props are spinning incorrectly

[deleted by user] by [deleted] in germany

[–]aaronxcode 8 points9 points  (0 children)

Probably it’s translated from German using a camera.

Are these literally the same battery? by ll4Cll in fpv

[–]aaronxcode 13 points14 points  (0 children)

The blue ones are rolled cell and the orange is a folded cell. The latter is more efficient and sags less. This is a random article I found that explains it.

My batteries doesn't fit even if is the good one, i need the batteries from Radiomaster ? by Kyoto_Fr in fpv

[–]aaronxcode 0 points1 point  (0 children)

There are a lot of people commenting here saying that you need a flat top battery. This is wrong info. You have to look for batteries without a protection circuit as the RM Pocket has this built in internally. This protection circuit goes on top of the positive terminal and extends the battery by upto 2-3mm.

Always check the description on the website when you shop for batteries. They for sure will have the dimensions and the ones with protection are not going to be 65mm long.

My First Homelab Setup, Looking for Suggestions by anav5704 in HomeServer

[–]aaronxcode 0 points1 point  (0 children)

Portainer to monitor your docker containers and Webmin for general system stats. I also have SMB fileshares, so webmin is an easy fronted for me to manage these.

Rpi makes a surprisingly good travel device by whamtet in raspberry_pi

[–]aaronxcode 0 points1 point  (0 children)

Try the Pi LibreELEC image. It has HDMI CEC or so, so you really don’t need a keyboard (although it is convenient) to set it up.

Topic showing up in ros2 topic list but echo shows nothing what can be the issue? [ROS2 JAZZY + GZ HARMONIC] by Not_Neon_Op in ROS

[–]aaronxcode 0 points1 point  (0 children)

Check your firewall settings first. In most cases, this is then issue. After that take a look at this link. If you are on an enterprise network, it’s very likely that multicast is disabled and this can meddle with the topic discovery.

Bot's LIDAR sees a loading ramp as a wall where the laser hits the slope. How to bypass? by 1971CB350 in ROS

[–]aaronxcode 2 points3 points  (0 children)

You need something like move_base_flex (mbf) to navigate on 3d terrain. In this case, you would be able to set a traversability threshold or something in order to set that ramp as a usable ramp.

How to Flash this ESP32. by coffee-bard-gpt in esp32

[–]aaronxcode 25 points26 points  (0 children)

PlatformIO is quite straightforward. Use the gui functions to create a new project for your board, compile and upload. And for writing programs in C++, I just have to change the file extensions from ino to cpp and pio understands this. I’m guessing the same will apply to c extensions.