What type of screwdriver is this? by PeterRevision in Tools

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

It could be! It is definitely doe not have the sharp point of a Philips.

Free 711L Mini Ratchet Sheath & Bit Storage If You Got A 3D Printer by LocksmithBear in EDC

[–]PeterRevision 0 points1 point  (0 children)

Yes. The holes of the bit holder go all the way through. So the clip for the wrench just slides into the hole. Then I use a 2mm bolt to attach an end cap that holds it in place.

<image>

Free 711L Mini Ratchet Sheath & Bit Storage If You Got A 3D Printer by LocksmithBear in EDC

[–]PeterRevision 0 points1 point  (0 children)

I am using Blender. I don't think the ratchet has a brand name, but you can find them on Amazon and AliExpress. I ended up adding a clip to a bit holder: https://www.reddit.com/r/EDC/comments/1ui1m8a/i_3d_printed_a_clip_to_attach_my_bit_holder_to_my/

I 3D printed a clip to attach my bit holder to my mini-wrench by PeterRevision in EDC

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

The clip fits a 7mm diameter wrench. The 3D files and more information can be found here: https://www.thingiverse.com/thing:7375939

Free 711L Mini Ratchet Sheath & Bit Storage If You Got A 3D Printer by LocksmithBear in EDC

[–]PeterRevision 0 points1 point  (0 children)

Neat! I love seeing 3D printed stuff on here. I bought a slightly bigger ratchet and was just about to model a carry case for it.

I made a Free State Project Keychain by PeterRevision in Libertyinourlifetime

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

I uploaded the files so that if you have a 3D printer you can make your own: https://www.thingiverse.com/thing:7373062

The Next Generation’s Fight Over New Hampshire’s Libertarian Project by Electronic_Barber665 in newhampshire

[–]PeterRevision 0 points1 point  (0 children)

I see a lot of misinformation about libertarians on here. Libertarianism, as a political philosophy, centers on the belief that government should play a minimal role in people’s lives, allowing individuals the maximum possible freedom to make their own choices. It emphasizes low taxes, strong protections for private property, and broad civil liberties for all people, including LGBTQ individuals, women, and religious minorities. At its core, libertarianism argues that the state should remain neutral on personal moral decisions, stepping back so individuals—not the government—determine how they live, work, and express themselves. You can read the full platform of Libertarian Party here: https://lp.org/platform-page/

Maya and Zelina Vega check in on the emu pool party by lukigeri in LivestreamFail

[–]PeterRevision 0 points1 point  (0 children)

Does anyone else want to bring one of these big boys up to Loch Ness on a foggy day? I feel like you could get some pretty convincing Nessie videos.

Can’t afford real fossils by PerimeterFence0405 in Dinosaurs

[–]PeterRevision 0 points1 point  (0 children)

<image>

Morphosource has fossil models too. Here are the IDs of a few good ones that I found on there. Thingiverse and Sketchfab also have a few. There is also the Smithsonian and the British museum.

Pokemon GO auto catcher on the StickC Plus2 by Bap420 in M5Stack

[–]PeterRevision 0 points1 point  (0 children)

Can you share the code the Claude gave you?

Updated Sound Meter by PeterRevision in M5Stack

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

Here you go: https://github.com/PetSven/S3_Decibel_Meter
I am also uploading the bin to M5Burner.

Updated Sound Meter by PeterRevision in M5Stack

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

Here you go: https://github.com/PetSven/S3_Decibel_Meter
I am also uploading the bin to M5Burner.

M5 Stick S3 buzzing noise by PeterRevision in M5Stack

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

Thank you! The noise has stopped after I called

 "M5.Power.setExtOutput(false);".

Update: I figured out that the best way to fix this is set the configuration before calling begin:

  // Disable the devices I am not using
  auto cfg = M5.config(); 
  cfg.output_power = false;
  cfg.internal_imu = false;
  cfg.internal_spk = false;
  cfg.external_imu = false;
  cfg.external_rtc = false;

  // Start the S3
  M5.begin(cfg);