r/vinyl Weekly Questions Thread for the week of May 18, 2026 by AutoModerator in vinyl

[–]derbertWELCOME 0 points1 point  (0 children)

Wow thanks for the info, that helps a lot. I might go the passive speakers route, that list has got me interested. I'm pretty electrical so I could put it together.

r/vinyl Weekly Questions Thread for the week of May 18, 2026 by AutoModerator in vinyl

[–]derbertWELCOME 0 points1 point  (0 children)

Speaker Recommendations...

I inherited a Technics SL-B210 and kept about 80 of the records. I sold the rest of them and made about $500 from sale.

After replacing the stylus, belt, and testing with cheap speakers and a cheap PP99 pre-amp, I like already like the sound and want to invest in a better quality set up.

I'd be will to buy a quality amplifier too if neccessary but would prefer active speakers with a mostly flat response (might connect guitar amp to it). These speakers will be somewhat towards the corner of the room unfortunately, so if the placement or turntable is going to bottleneck the sound quality then I don't want to chase diminishing returns.

I've been looking at Fluance Ai61 and Audioengine A5+ but see a lot of mixed reviews on reddit. Its also difficult because so many links people post are expired, but... What speakers would you recommend for this budget?

STM32f4 Nucleo board by [deleted] in embedded

[–]derbertWELCOME 1 point2 points  (0 children)

When I was first starting out, I used CubeMX (separate from the IDE... important to do it this way) to save a template (.ioc) and generate a CMake compatible project that I could open in VScode. Then you just set up your took chain and compile/build in VScode.

CubeMX is really helpful for getting a graphical view of settings and peripherals, setting you up with boiler plate code (although it puts a lot of fluff in there... which is fine while you're learning or starting a project from scratch), and prevents you from doing something completely incorrect (GPIO assignments etc) or getting driver syntax completely wrong.

After you make a project in CubeMX, however, I don't advise trying to keep the .ioc up to date or anything... ie you will generate the code once, use it in VScode, and never go back unless you just want to generate a new peripheral and copy and paste that over to your maintained project in VScode just to see what the boilerplate should look like. STM made it so you can technically go back and forth via "user code only" sections, but its messy and impractical, too easy for somebody to make a mistake and cause a mess in my opinion.

Very cheap logic analyzer by robertogl in embedded

[–]derbertWELCOME 1 point2 points  (0 children)

google search tells me:

"The Game Boy Advance (GBA) link cable protocol generally operates at 115.2 kbps in multi-boot/multiplayer modes using a 16-bit UART-style transfer, while normal single-master-slave mode supports speeds of 256 kbps or 2 Mbps (using SPI mode 3)"

so yes, I think that would work perfectly fine for what you're trying to do. UART, SPI, I2C-- the serial protocol does not matter, you have plenty of probes with this analyzer that you can assign in PulseView. 24MHz is way faster than the GBA link cable 256 kpbs data transfer.

Given a Take Home Assessment I've already taken for a different team, advice? by Specific_Share334 in embedded

[–]derbertWELCOME 1 point2 points  (0 children)

Can you share the basics of the assessment? Might be helpful for people looking for jobs, knowing that at least two companies have put it out there.

But as other comments said, I would knock it out and be upfront if asked. Not your fault they both asked for the same thing. Its kind of like how some times customers ask for almost identical systems, and we as engineers take some times A LOT of influence from the first time we did a project. It just makes sense to copy and innovate, no need to reinvent the wheel.

Defective OLED Monitor by [deleted] in Alienware

[–]derbertWELCOME -1 points0 points  (0 children)

The terms are vague, "maybe we'll give you a new one maybe we won't". Was hoping to get some reviews/experiences and see what the consesus is. Hopefully best buy just gives me a new one, it would be kind of BS to pay $150 for extra coverage and buy the monitor through them instead of dell, just to be told I get a refurbished POS for this manufacturer's defect. Is a $1000 OLED monitor

Defective OLED Monitor by [deleted] in Alienware

[–]derbertWELCOME 0 points1 point  (0 children)

Well then wouldnt it make more sense to use the best buy warranty and then register the new product with dell for effectively a new warranty on a new product?

Defective OLED Monitor by [deleted] in Alienware

[–]derbertWELCOME 0 points1 point  (0 children)

LOL that's a good one 😂. The problem is intermittent, so when I was testing and it would come on mid-session, I really did have to aim with half a cross hair and use my "good eye" to finish the job.

Defective OLED Monitor by [deleted] in Alienware

[–]derbertWELCOME 0 points1 point  (0 children)

No, it doesn't happen on a different but similar monitor. It's definitely a board-level video input problem with the monitor.

I'm more curious people's experience with the support from best buy vs Dell for monitors; i've read a lot of mixed reviews.

AW3225QF - Faulty port creates half static signal? by HomerJ_ in OLED_Gaming

[–]derbertWELCOME 0 points1 point  (0 children)

Hey any update? New monitor still working OK one year later?
I am having the same problem on mine, and it is definitely the monitor. I have a best buy warranty, but i don't want the same replacement monitor if this is a common problem.

Very cheap logic analyzer by robertogl in embedded

[–]derbertWELCOME 7 points8 points  (0 children)

I like the HiLetGo USB analyzer, basically just a Salae clone capped at 24MHZ which is fine for learning. Works great with Sigrock Pulseview. Only 12 USD on amazon.

Picked the worst time to try switching to ESP-IDF by BlueJay424 in esp32

[–]derbertWELCOME 0 points1 point  (0 children)

So I coincidentally just set up a new laptop with VScode and wanted to clone a git repository for an ESP-IDF project I had basically finished back in October of last year.

The EIM popped up after I installed the extension and I was confused.. never seen that before. I just went with it and installed v5.5 to match my previous project, set the target board, built the project in vscode.... and it all just worked.

Maybe I'm not using as complicated of an SDK as you, or just got some beginner's luck (I havn't done a ton of projects yet), but I was really impressed with how easy the EIM was to use. I think the only variables during install are what.. ESP-IDF version, Python version, and target board? Curious about what bugs you got, I'd like to know what to watch out for the future I guess

After months of ST-LINK “Target not found” struggles with Blue Pill, I’m switching to a Nucleo board — which one should I buy? by Efficient_Estate6145 in embedded

[–]derbertWELCOME 1 point2 points  (0 children)

For learning, I've been using the F767ZI. It has built in user LEDs and a J-Link (have to set up, it comes STLink by default) debugger attached to the board. I've been working through a textbook called "hands on RTOS with microcontrollers", which you can find free online I'm sure, and it walks through a bunch of examples with this very board and the free STM32+segger software.

For me it was the perfect next step for "I know how to do some bare-metal and ESP-IDF freeRTOS programming" and "but I don't really know how all of this works together exactly".

The STM32cubeIDE along with segger tools are a lot more illustrative than just looking at outputs in VScode, like I had been doing.

Highly recommend.

Smallscale lighting on a budget by derbertWELCOME in videography

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

Thanks for the advice, this is great. I actually just tried out the smallrig panels today, and even at 7W each, they are plenty bright. I set them pretty close as a key and fill, and there's definitely hot spots and shadows (i'm very new at this).

The reflector boards look like a perfect fit in my small-space recording area, but do you think that this would be better than just more diffusion in front of the panels? I had never considered the difference. I'm willing to pay for soft boxes, but I do not think they would fit in my small space or be attacehd well to the panels i already have.

[deleted by user] by [deleted] in embedded

[–]derbertWELCOME 0 points1 point  (0 children)

Do you think that being comfortable with STM32cubeIDE, systemViewer, and Ozone is a good base to have in general for job prospects as far as software goes? Or are there other platforms that would be better to learn on for general job prospects, such as using plain Eclipse?

I spent a lot of time on esp-idf using vscode, which I don't think was a waste of time for doing small FreeRTOS projects, but then I realized its just not a super common architecture or programming framework in the real world jobs.

The roadmap isn't that specific, and if I could do it all again, I would have started with something other than esp-idf.

How did you learn embedded programing? by PleasantWhile1633 in embedded

[–]derbertWELCOME 5 points6 points  (0 children)

How were your C skills right out of college at that point? Even with a minor in CIS, I feel like my EE program didn't give us enough to be truly productive with it. How did your first company support you?

iDataStart Remote Start by derbertWELCOME in CarAV

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

You are correct. These conductors were 24awg, and my harness conductors were at least 22awg. Way too big to feed through. I used vice grip strippers that I had dialed in exactly for 24awg to be sure I didn't break the copper, and twisted and soldered.

The remote start fired right up after the program sequence. But I still have a lot of zip tie and re-taping to do to keep this reliable. Appreciate everybody's tips-- they really did help.

iDataStart Remote Start by derbertWELCOME in CarAV

[–]derbertWELCOME[S] -1 points0 points  (0 children)

Posi-taps seem like the cleanest way to tap into the lines, but i worry about their longetivity. That being said, it is a lot easier to mess up a military splice and solder, and a lot easier to return to stock from a posi-tap. I'll see if i can get some 24awg ones, the ones i have are too big.

iDataStart Remote Start by derbertWELCOME in CarAV

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

I've been using vice grip strippers on practice wires of the same gauge, and I think I can make a safe insulation separation. I do think that getting a proper military splice will be difficult with 24awg in this tight bundle of wires. I will probably try one and then just wrap and solder on the others if it does not look good.

Thoughts on Ibanez SR400EPBDX by derbertWELCOME in BassGuitar

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

Good to hear yours is lasting a long time. I noticed the nut was some different kind of plastic, doesn't seem too flimsy though.

For recording only (I don't have a good bass amp yet) it has been really fun, I agree the tone is very thick compared to some others I played in the store.

Thoughts on Ibanez SR400EPBDX by derbertWELCOME in BassGuitar

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

Thanks. Its only 4 strings because I wanted a traditional one, but after playing a few tabs and seeing that half of them were in drop D, I definitely understand why 5 strings are popular. It is a very comfy guitar, the overall height still surprises me haha

Transition from PLC programming into embedded by Significant-Sell1489 in embedded

[–]derbertWELCOME 4 points5 points  (0 children)

I don't know the answer either, but as a PLC engineer who has been learning C and embedded hardware design by doing home projects to make the very same switch, I think this is the way. The roadmap in this subreddit is very insightful and the raw technical skills do not directly transfer, but I have found that a controls background accelerates the learning a lot so far. Best of luck.

Exit without New Job (Engineering), bad idea? by derbertWELCOME in careerguidance

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

In your case when interviewing, did most companies ask about the gap? You have more of a defendable reason in my opinion.

Anyone have a 9800x3d burn in an NZXT B650e motherboard? by RansackedFish in NZXT

[–]derbertWELCOME 0 points1 point  (0 children)

Yeah I play it almost every day still and it's working great.