6
zymk
4y

Any one here have a degree in Electrical Engineering or Electronics Engineering? I'm thinking about going back to school, but I'm not sure it's worth the money since I live in the US. (cries in over-expensive education costs)

I do a lot infrastructure work and some super basic programming/scripting but I think I really want to get into hardware maybe zone in on either RF or take a stab at amps/effects pedals for guitar and bass.

as an aside, I'm not trying to go back to school for job or career related reasons, I just want to noodle with stuff and maybe create my own circuitry for stuff.

Comments
  • 0
    @M1sf3t I'm definitely not a good source of expertise and I'm just guesstimating here, but I thought C.E. was geared for like asic or chip design and architecture type stuff. 😅

    Still totally cool stuff, but I was thinking of simpler hardware to interact with. I'm no 'big-brain' that could do cpu architecture or something awesome like that hahah 😂
  • 1
    I heard there are Embedded systems that you also can script, so maybe try this discipline, I dunno?
  • 3
    If you just want to learn this stuff for fun, why don't you go for a certificate program/extension course/whatever it's called? Much cheaper than a college degree and will probably get you a decent amount of knowledge in the field. After that you can continue learning on your own.
  • 2
    An associate's degree or certificate program at your local CC will probably be a reasonable and cost effective way to get into it.

    I don't see a whole ass bachelor's degree being worth it for EE.
  • 3
    I have an EE degree. Originally, I had wanted to specialise in computer engineering, but realised that the knowledge I'd study would be outdated in no time, so I instead graduated in communications engineering where it was a lot of timeless math.

    If you want to go for audio effects devices, that will mostly be digital ones these days. This involves embedded systems with DSP capable microcontrollers on the hardware side, and of course some analog circuitry around the chip.

    Plus solid knowledge about digital audio processing (which was my final studies specialisation). However, that only becomes accessible if you have learnt your way around e.g. Fourier / Laplace / Z transformation to even make sense of it.

    RF stuff is also included, like antennas, cables, waveguides, fibre optics. Though that wasn't my specialisation, that would have been another field to choose.

    All in all, it was 5 years full-time studies for me (master equivalent).
  • 2
    In the meantime, here's a good and digestible intro to electronics in just 38 minutes:

    https://youtube.com/watch/...

    That can get you started right now without any school.
  • 0
    @Stuxnet I need to spend more time researching this avenue. The 2 local CC's don't really offer anything engineering-wise. I might just have to broaden the scope of what 'local' means to me lol
  • 1
    @Fast-Nop Awesome! Thank you for the vid, watching it now
  • 0
    @M1sf3t Thanks for that info, that is already turning up better results 😁
  • 1
    @molaram this is perfect 'cause I've been wanting a solid reason to start learning c/c++ and it looks like that's the primary language being taught in EE coursework
  • 1
    @zymk Yeah that's because it's close to hardware, hence no automatic resource management.

    What seems common with beginners these days is using auto-generated code for handling the hardware because they are afraid of reading chip datasheets and want to shortcut the way. Arduino style.

    Whenever something doesn't work, these people have no idea where even to start looking and paste dozens of lines of autogenerated code into forums and ask what they are doing wrong.

    That's because they lack technical curiosity, don't care how it actually works, and hence will never be good devs. The right attitude will already give you an edge here.
  • 1
    Yea I'm an electrical engineer. CS is mostly math. Just study whatever degree you want. No one really gives a shit about your undergrad.
  • 1
    @Fast-Nop I generally pick up a new chip and start using the arduino environment. Then when I have specific needs I dive into the chip docs and adjust things how I want them.

    @zmyk checkout https://www.pjrc.com/

    They have chips that work with arduino ide that have libraries specializing in audio. They have some really nice stuff. They also have boards for hooking in audio to their via a/d and d/a. The forum is really good and they explain how things work.
  • 1
    @Demolishun For tinkering around, that's one thing. Arduino is made for hobbyists without actual embedded skills, but that won't make you an embedded dev - which is OK if that's not the goal anyway.
  • 2
    @Fast-Nop I've done both. Some "real" embedded with multitasking OSes and some arduino.
Add Comment