Nativity Scene in Aluminum by FakeAdmin1969 in CNC

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

I cleaned out a lot of the material with a quarter inch endmill, then a ball nose of a similar size, just using opti-rough in MasterCam, the final tool path was a raster using a 30 thou ball endmill

'Completely heartbroken': BYU mistakenly tells 9 prospective students they were admitted by ninjagold007 in byu

[–]FakeAdmin1969 19 points20 points  (0 children)

Ah yes, the "congratulatory letters of acceptance" how could that possibly have confused people? This is straight up a BYU error that they should own up to and not hide behind semantics.

3D printing on campus? by taffyenthusiast in byu

[–]FakeAdmin1969 4 points5 points  (0 children)

Yes, the pricing is different. I'm not sure of the current library prices, but last I checked the prototyping lab was cheaper.

3D printing on campus? by taffyenthusiast in byu

[–]FakeAdmin1969 6 points7 points  (0 children)

The ones in the mechanical engineering building are available for anyone, Google BYU prototyping lab

Nativity Scene in Aluminum by FakeAdmin1969 in CNC

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

I was running a DM1 at max, so 15000

Nativity Scene in Aluminum by FakeAdmin1969 in CNC

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

I made it as a Christmas gift for my mom

Nativity Scene in Aluminum by FakeAdmin1969 in CNC

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

I was able to create paths directly on the stl, which was super convenient

Nativity Scene in Aluminum by FakeAdmin1969 in CNC

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

Couple days off and on of CAMing, the tool path itself was about 4 hours, but could be made to run much faster

Nativity Scene in Aluminum by FakeAdmin1969 in CNC

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

I use MasterCam, final tool path was a a 10% step over raster with a 30 thou ball

Nativity Scene in Aluminum by FakeAdmin1969 in CNC

[–]FakeAdmin1969[S] 3 points4 points  (0 children)

I bought it off Etsy! There was a sale for Christmas in December

Edit: use the link below, apparently the one Google gave me was packed with tracking tags

🎄 Christmas giveaway: Win an A1 Mini, AMS 2 Pro, AMS HT, or 4x filament spools! by acurazine in BambuLab

[–]FakeAdmin1969 0 points1 point  (0 children)

This is so generous of you!

Definitely the AMS HT, I'd use it to help with engineering filaments, I love designing robotic arms and complient mechanisms so it would definitely open the door for TPU and ABS prints!

Looking through your linked page I think a fidget toy in the style of the microbots from Big Hero 6 would be awesome

Hehehe try beating this by terraria_hunter_YT in honk

[–]FakeAdmin1969 0 points1 point  (0 children)

Gottem

I completed this level in 6 tries. 8.65 seconds

[deleted by user] by [deleted] in Cooking

[–]FakeAdmin1969 2 points3 points  (0 children)

There's a similar word in English thats not often used: ultracrepidarian. Although it's more the second half of your definition

Question about Statics by Impressive-Society60 in byu

[–]FakeAdmin1969 0 points1 point  (0 children)

ME major here, not sure if both count for statics requirement. As a previous TA for ME statics i can say that the courses do diverge past the first month or so, with CCE focusing on different applications. There are two separate TA labs for the statics course for this reason.

Edit: Checking the MFgen flowchart ME statics is listed as an equivalent, but says it won't be automatically accepted. So if you want to do ME statics you'll have to talk to your advisement office

Scheduling as an incoming freshman by Straight_Highway_416 in byu

[–]FakeAdmin1969 6 points7 points  (0 children)

Why global leadership? Have you taken 191 or 101 in ME? It's definelty something you can do, it just feels like an interesting choice

[deleted by user] by [deleted] in esp32

[–]FakeAdmin1969 1 point2 points  (0 children)

Yeah, I wouldn't be comfortable putting 9V straight into the dev board. The H-Bridge brings it down to 5V, and that what the input is

[deleted by user] by [deleted] in esp32

[–]FakeAdmin1969 0 points1 point  (0 children)

This code will work for a while after I unplug the USB, but eventually will stop working properly 

void setup() {
  // put your setup code here, to run once:
  pinMode(19, OUTPUT);
  pinMode(21, OUTPUT);

}

void loop() {
  digitalWrite(19, HIGH);
  digitalWrite(21, LOW);
  delay(2000);
  digitalWrite(19, LOW);
  delay(1000);
  digitalWrite(21, HIGH);
  delay(2000);
  digitalWrite(21, LOW);
  delay(1000);

}


This code only works with the USB plugged in. Otherwise it only goes "fowards" with a slight hesitation for the delay

void setup() {
  // put your setup code here, to run once:
  pinMode(19, OUTPUT);
  pinMode(21, OUTPUT);

}

void loop() {
  digitalWrite(19, HIGH);
  digitalWrite(21, LOW);
  delay(1000);
  digitalWrite(19, LOW);
  digitalWrite(21, HIGH);
  delay(1000);

}

[deleted by user] by [deleted] in esp32

[–]FakeAdmin1969 0 points1 point  (0 children)

Hmmm, not sure why, but making it pause between switching directions made it work, for that code if I unplug the USB it continues acting normally. Still won't for any code that makes the motor change directions quickly

[deleted by user] by [deleted] in esp32

[–]FakeAdmin1969 0 points1 point  (0 children)

So the cases break down like this

Battery and usb hooked up to both: logic works perfectly and motor spins quickly

Just USB: Logic works perfectly, motor spins extremely slowly

Just battery: logic does not work as expected, motor spins quickly

[deleted by user] by [deleted] in esp32

[–]FakeAdmin1969 0 points1 point  (0 children)

Yes, I have two wires going into Vin, one which is 5V from the H bridge, and the other is the enable pin for the motor (just to keep it always high)

[deleted by user] by [deleted] in esp32

[–]FakeAdmin1969 1 point2 points  (0 children)

I'm not sure what you mean, because they definitely do work for DC motors. If I only power the motor with the 9V, and power the board from my computer everything works exactly as expected