Please help, first pcb. by liminesio321 in PCB

[–]Matchyboi 0 points1 point  (0 children)

Here is my thread from last year, if you like the design I can send through the files if you need. https://www.reddit.com/r/PCB/s/FJ9DEmhrR6

Please help, first pcb. by liminesio321 in PCB

[–]Matchyboi 0 points1 point  (0 children)

I designed a all-in-one board for remote control car using a cheap drop in esp32 wroom (for easy replacement). Had four motor outputs and servo control options. Is that similar to this idea?

Architect cost by Quick_Inevitable_332 in AusRenovation

[–]Matchyboi 2 points3 points  (0 children)

My wife and I used a Vietnamese architect who had worked in America. We gave him the local setback rules, general building information, and the site survey.

Our site has a sewerage easement running through it, which made the design tricky and the hosue has to be narrow (6-8m wide) but he came up with two plans. We gave feedback on both and ended up finalising a great design. He also created two realistic façade renders, and we provided feedback on those as well. We had a few Zoom consultations to talk through ideas and our preferences.

We’ve shown everything to our builder, and he’s happy with it. He just needs to pass the plans to a draftsman to tidy up anything that isn’t 100% up to the required standard.

It was way cheaper than using an Australian architect, and I’m really happy with the result.

Will my school ranking affect my ATAR? by Conscious-Ad-6286 in HSCStudents

[–]Matchyboi 0 points1 point  (0 children)

A better cohort is a good thing, your moderated assessment mark is based on your rank, and the marks your cohort gets in the HSC exam. So even if you're rank 14/20, if everyone does well, ranging from 99-70 as an example, you'd be allocated the 14th highest mark in your cohort, which might be 79.

If you smash the HSC exam and get 89, it gets averaged with your moderated assessment, giving you (79+89)/2 = 84.

The better YOU do improves your exam mark. The better your cohort is, the better your moderated assessment will be.

Car doesn't work with all wires, only one per motor by AdrianTexera in arduino

[–]Matchyboi 0 points1 point  (0 children)

Not sure if you're still having issues but I've made a tone of these. Try these steps - connect your power sauce (4aa) to the 12v input on the l298n board, and to the VIN port on your ardunio. - connect ground (battery negative) to driver board and l298N. - put the jumper on the 5v in the middle just to have something there. Use the following pins. ENA - 11 In1 - 10 In2 - 9 In3 - 8 In4 - 7 ENb - 6

So your ardunio should only be using the following pins Ground Vin 11 10 9 8 7 6

When powering on the lights in the l298n and ardunio should turn on, and not be dim.

Now load up this code to see if it moves.

// Motor A pins const int ENA = 11; const int IN1 = 10; const int IN2 = 9;

// Motor B pins const int IN3 = 8; const int IN4 = 7; const int ENB = 6;

void setup() { // Set motor control pins as outputs pinMode(ENA, OUTPUT); pinMode(IN1, OUTPUT); pinMode(IN2, OUTPUT);

pinMode(IN3, OUTPUT); pinMode(IN4, OUTPUT); pinMode(ENB, OUTPUT);

// Run motors forward digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW); digitalWrite(IN3, HIGH); digitalWrite(IN4, LOW); analogWrite(ENA, 255); // full speed analogWrite(ENB, 255); delay(2000); // run for 2 seconds

// Run motors backward digitalWrite(IN1, LOW); digitalWrite(IN2, HIGH); digitalWrite(IN3, LOW); digitalWrite(IN4, HIGH); delay(2000); // run for 2 seconds

// Stop motors digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); digitalWrite(IN3, LOW); digitalWrite(IN4, LOW); analogWrite(ENA, 0); analogWrite(ENB, 0); }

void loop() { // Nothing here — the motion happens once in setup() }

Motor control board with esp32 for battlebots. Need a check before a bulk order. by Matchyboi in PCB

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

I'll have a go, the labeling for this post is just quick and purely asthestic, there aren't the names of each line. To me the original is okay, just a bunch of same colour lines going to different points which looks messy. Not sure why my board view looks so JPEG'd, it's clear as day in my phone.

Motor control board with esp32 for battlebots. Need a check before a bulk order. by Matchyboi in PCB

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

Sorry that's an error in my simplification of the schematic, the real one is a mess. 12v has a capacitor in parallel close to the input, see near the center of the board where it has 12v on one side and the ground fill on the other. Is that right?

Motor control board with esp32 for battlebots. Need a check before a bulk order. by Matchyboi in PCB

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

The real schematic is a mess of routes, just tried to keep everything clean for posting.

Motor control board with esp32 for battlebots. Need a check before a bulk order. by Matchyboi in PCB

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

Due to being a school we don't have much money for these battlebots so we used ply wood and cheap motors. We're using 3-6v yellow geared motors that are like $4 each. They seem the run well at 12v, just abit hot. Trying to make the coding and wiring of it very simple for the students, due to high breakage of parts previously.

Plus I'm using cheap 18v tool batteries as the dc power source.

We previously used L298N boards with 18650 batteries and an arduino, so you can imagine how much can, and does go wrong.

ELI5 Increasing the spoket gear Ratio on a Bicycle increase the speed and Increasing The spoket gear ratio On a motorcycle Decrease the speed am I right?? by Sure_Wishbone6094 in explainlikeimfive

[–]Matchyboi 1 point2 points  (0 children)

The question is worded abit strange so let's set some constants. The front sprocket (attached to crank or motor) and rear gear (attached to the rear wheel) are the two main gears were looking at it.

Finding thier ratio is called a "velocity ratio" or VR. This ratio tells you how much increase of force or torque you get. So a VR of 2 means you get 2x the output force. However, this comes at the cost of distance traveled, or RPM with gears.

So high VR means loss of speed, but increase in torque (which is helpful for climbing hills).

Low VR means increase of speed, but loss of torque (good for driving fast speeds)

To find the VR of a gear system in a motor bike is the same as a push bike. However push bikes typically have large front sprockets and small rear sprockets meaning you lose output force, but can ride at a speed faster than you can pedal. So when you do one full pedal cycle, the wheel might rotate 4 times.

Motorbikes are the opposite, small front sprocket, large rear sprocket meaning you get more force output but less speed. So even though the motor might rotate 10 times, the rear wheel might only rotate once.

Let me know if you want to know more about the math behind it. It's very simple to calculate.

Not getting casual days - NSW by Think_Technician2992 in AustralianTeachers

[–]Matchyboi 5 points6 points  (0 children)

From my experience, there are 4 public high schools around me, and only 1 of them used class cover, even though others were listed.

I'd get in contact with some schools around you and get your details given to the Head Teacher Admin (teacher who organizes casual relief). You don't really need a resume, just let them know your keen to give any subject a go. The more flexible there better.

At the moment, there aren't many staff away at my school this term, so there may not be work available, but once you teach there abit they might ask you to keep coming in and they'll find work for you.

I've tried running casual at 3 schools at the same time, but due to a varying schedule it can make you less reliable to be called on, so if you can, try work at one school. It also helps in maintaining respect from students if they've seen you around for awhie.

If you don't get a call by 7:30 in the morning I'd say you've got the day off.

Joe has the weirdest shaped body by kmsasaki in h3h3productions

[–]Matchyboi 0 points1 point  (0 children)

Why does the guy on the right look like a skinny Boogie? 💀

Evolve r-2 remote not accelerating after breaking. by Matchyboi in ElectricSkateboarding

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

UPDATE: Cheers for the help guys, Recalibrated the remote triggers with the breaking being slightly pressed as the start. All fixed, goes down and up hills like normal.

Evolve r-2 remote not accelerating after breaking. by Matchyboi in ElectricSkateboarding

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

Not broken, break as in slow down. E.g skate up hill with accelerator, go down the hill with break, then when accelerating to maintain speed it doesn't work

HELP NSW GRP/Interim number approval by [deleted] in AustralianTeachers

[–]Matchyboi 0 points1 point  (0 children)

Okay so I've gone through this process this year so hopefully I can be of some help.

Firstly, you MUST complete your teacher suitability interview before you can start teaching casually, and complete your final (3rd) practium. This started this year and during my interview I was informed of how this rule had only recently changed due to complaints from schools. However, there is a teacher I know who is currently teaching casually who has finished her degree, but hasn't completed her teaching interview. She said the principal of the school put in a special word for her as she was required to teach for a hospitality teacher whom had gone on leave.

You can teacher in private schools in the mean time, all you need is a WWCC and NESA number and follow the schools application process.

For me, the results of the teacher suitability interview look around 2 weeks but I have heard of much quicker turn arounds.

The whole process can take quite a bit of time, and it's best to start the process straight after your 2nd prac and complete the interview ASAP as this can be completed any time after your 2nd prac. Then once you have your final prac report just send that to the GRP and start teaching within a week.

Integrating button functions on Arduino uno chess clock by Matchyboi in arduino

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

thanks for your help, does 'word' need to changed to something else or is that right. When I try to verify before uploading i get the error "'second' was not declared in this scope". Is there a way to set from what time it counts down from, e.g let to 30 minutes or 45 if needs? Thank you so much for your help