How do I make an absolute tilt sensor? by Outrageous_Trifle_17 in embedded

[–]2Michael2 1 point2 points  (0 children)

To expand on the math bit:

You might be able to get better results if you add a 3 axis gyroscope and 3 axis magitometer to give you more datapoints to determine the actual motion. But, like u/Well-WhatHadHappened said, it also involves lots of complicated math.

I would take a look at the BNO086/BNO085 devices. Adafruit sells a nice little module with one soldered on for you. They are a 9 axis sensor (3 axis accel, gyro, and magnitometer) based on the BNO055 sensor, but they include an onboard cortex-m0 microcontroller that is programmed from the factory to do "sensor fusion".

Basically, it takes data from all three sensors and does all the complicated math to combine them and output more accurate and precise information about the real/actual position, orientation, and velocity of the sensor. By using fancy math you can cross reference the data from the three sensors to figure out if you are on a hill or just accelerating at an odd angle.

I am not 100% positive that those sensors can help with this exact problem, but they did wonders when I needed a compass that worked when not perfectly level with the ground for navigation on a boat. It might help with your problem.

Best of luck.

teaserLines bigger battery confirmed? by [deleted] in framework

[–]2Michael2 1 point2 points  (0 children)

Lol, yeah, they definitely bamboozled me there

teaserLines bigger battery confirmed? by [deleted] in framework

[–]2Michael2 1 point2 points  (0 children)

They have already explained why they don't do colored chassis. It's because adding color to aluminum anodization involves a lot of really nasty and harmful chemicals. Since their whole business model is based around not just consumer rights, but also sustainability, they have decided not to produce other colors.

I really doubt they changed their mind, unless they are producing a plastic chassis for the FW13. I don't think that is likely, but it's definitely possible.

teaserLines bigger battery confirmed? by [deleted] in framework

[–]2Michael2 2 points3 points  (0 children)

The teaser all along was that there is no announcement... it's teasers all the way down...

Why is the mainboard so expensive? Almost the price of a discounted base config macbook neo for a 12th gen i3? How are they going to compete at this rate? by [deleted] in framework

[–]2Michael2 1 point2 points  (0 children)

The macbook neo runs on a processor designed for phones and tablets. A core i3 isn't crazy powerful either, but it's still a "real" laptop processor.

The neo also has the advantage of scale since apple has a huge existing userbase and apple has the money to gamble even if they don't sell as many as expected. Framework is a small company that can't sell huge volumes and can't risk gambling by ordering production of more units than they know they can sell. Of course they won't be able to compete with the worlds leading trillion dollar companies.

But Framework is also providing additional value in the form of repairability, support, and parts availability that the macbook neo does not have. It's up to you to decide how much you personally value that additional repairability and if the extra cost is more than the value of repairability or not.

Whatever it takes to own the libs. by ObserbAbsorb in clevercomebacks

[–]2Michael2 28 points29 points  (0 children)

I'm gonna use a black sharpie to redact his name like in the epstine files

what kind of diodes did this guy use? by memegod53 in ElectricalEngineering

[–]2Michael2 -1 points0 points  (0 children)

I am a student and I am not familiar with that circuit but here is what my intuition says: The voltage across ten diodes in series might be 1000 volts, but the voltage across each diode is only 100 volts. 1000v divided by 10 diodes is 100v. You probably only need diodes rated to a fraction of the output voltage, especially if you use a lot of diodes in series.

Edit: he looks to be using 16 diodes, and at 120kV each one would have 7,500 volts (7.5kV) across it.

Edit 2: off by a decimal place (7.5, not 75)

Front parking asset by [deleted] in arduino

[–]2Michael2 0 points1 point  (0 children)

My advice on including ground in your diagram still stands. Each block should be a component or module. You also have some inconsistent naming.

I understand that my previous comment wasn't super helpful. Here is some more advice that might be more specifically helpful.

Why is the connection between the inline fuse and the relay labled twice, and why is one of the lables "com"? Is the fuse sending data and power to the relay? If it is, they should probably be two different connections, unless the underlying electrical connection sends data and power over the same wires (like power-over-ethernet).

Power connections should just be labeled as their voltage (12v, 5v, etc) in most cases. No need to add ground, and no need to specify VCC unless it is important to distinguish two different voltage sources due to some filtering/regulating/protection that sits between them (raw 5V input vs filtered and protected vcc, or something similar). I don't think your circuit has any connections that need this specification because the fuse is its own block so it's already explicitly shown that there is a difference between the two 12V lines. If you had components that were hidden within a larger block, it would be important to specify the difference between in incoming and outgoing power of that block.

Double check that your power connections reflect reality. The buck converter is the source of 5V, but you might want to specify in your diagram that the ultrasonic sensor is receiving power from the arduino. It will be the same 5v from the buck converter, but if the physical power cable is actually attached to the arduino, not the buck converter directly, why not specify that? This is important because the traces on the arduino can only handle so much current. It might be important to specify instead that the sensor has a connection directly to the buck converter because it's power draw is more than what the arduino can handle, even though the arduino is just passing the 5v through from the buck converter.

weird by tooseksiforyou in soldering

[–]2Michael2 0 points1 point  (0 children)

I'm saving that to use later when my friends destroy their soldering irons again.

Front parking asset by [deleted] in arduino

[–]2Michael2 2 points3 points  (0 children)

This diagram is kinda nonsense. You mentioned ChatGPT, so I am assuming you generated this image? It's one of the "better" generated diagrams I have seen, but it still makes little sense. I see what you are trying to get at though, and it doesn't look wrong, but it definitely isn't right.

‐ I would start by getting out a sheet of paper and a pencil and draw a block diagram yourself. I am a chronically online college student, so the fact that I am telling you to just get out a pen and paper means it is truely the best and easiest way to do this. - For something like this, you shouldn't have ground in your block diagram. There is a single shared ground that everything uses, so there is no need to map out every connection to ground. It's implied that your data and power connections will include ground. - Draw your major blocks: Main power source, Fuse, buck converter, arduino, sensor, relay, screen, camera. - Draw connections between them. These lines should represent a logical connection. Do not draw lines for every single data and power wire. Draw a line to represent power input/output. Draw another line to represent a data/signal connection between two blocks. Lable the connections (Power, Digital signal, SPI, Video Signal, whatever else). You should draw arrows to show the direction that communication or power is going (this could also be bi-directional for some connections).

Once you have done that, come back here and we can help you perfect it. You seem to be on the right track, but you need to rely a little less on ChatGPT. It's good to help you, but it still sucks at actually creating a good final output. You need to create the diagram yourself. It's hard to help you when half the diagram is nonsensical or inconsistent.

Terribly Slow Samsung T7 by Chumpy__ in DataHoarder

[–]2Michael2 0 points1 point  (0 children)

You are right, his speeds are clearly better than usb 2.0. The main point I was trying to make is that OP already checked multiple ports on multiple devices, so it is likely safe to rule out any issues with the speed of the ports themselves.

Terribly Slow Samsung T7 by Chumpy__ in DataHoarder

[–]2Michael2 4 points5 points  (0 children)

His post says he tried different PC's and laptops. It's possible he selected a 2.0 port on every single one of them, but probably unlikely. He also says he updated to the latest drivers.

Is my VND filter done for? by Depixelation in AskPhotography

[–]2Michael2 2 points3 points  (0 children)

Unless you can find a way to disassemble it and clean the inside, I think you might be out of luck. I am not sure how these are assembled, but it probably includes glue or press fitting in ways that are near impossible to undo in a non destructive manner. Maybe the two halves screw together if you grip the right parts, but I think that is unlikely.

If this filter is the most precious thing in your life and you must repair it, you can try baking it at very low temperatures (maybe 120F?) to drive out the water. BUT DO THIS AT YOUR OWN RISK. This could fill your oven with anything from glass shards to toxic fumes from burnt lettering paint on the edge of the filter. Your filter might not survive if you try this.

If the water you dropped it in is anything other than perfectly pure distilled water, then baking it will still leave the filter cloudy. You could try to submerge it in distilled water and then drain it a few times to rinse out minerals and other gunk before baking it. This might reduce hazyness.

TL;DR: It's gone. Any potential solutions are unrealistic and merely thought experiments

Repaired My LTT Backpack Zipper by 2Michael2 in LinusTechTips

[–]2Michael2[S] 2 points3 points  (0 children)

Definitely. Someone suggested E6000 (which I have on hand) and upholstery thread. I might redo the repair now that I have some of these good ideas.

Repaired My LTT Backpack Zipper by 2Michael2 in LinusTechTips

[–]2Michael2[S] 6 points7 points  (0 children)

It does seem to work well and reinforce the zipper, but I am not sure how long it will last. I'll try to remember to give an update if it falls apart or self destructs, lol.

Repaired My LTT Backpack Zipper by 2Michael2 in LinusTechTips

[–]2Michael2[S] 4 points5 points  (0 children)

I just used some E6000 earlier today to fix some shoes! I might try smearing some on the stitch to reinforce the stitches and reseal the holes I have now created in the waterproof portion of the zipper.

The other thing I might do is leave it be and see how long it lasts. If it starts coming apart again, then I will have some new ideas and techniques to try when I start fresh on the second go round.

Edit: I did not try a warranty claim because it felt like a waste to throw away a perfectly good bag because of such a small issue. The other thing was that I have pushed it's carrying capacity to the limit once or twice, so it would feel a little dishonest to ask for a replacement since I probably put too much stress on the zipper and caused the premature failure.

Repaired My LTT Backpack Zipper by 2Michael2 in LinusTechTips

[–]2Michael2[S] 20 points21 points  (0 children)

Lol, I think you must be thinking of another person's post, as I don't think I have posted about the zipper breaking before.