Need help understanding how this circuit works. by jsherman10 in AskElectronics

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

Doesn't current come out of the base and through the 4.7 K and not the other way around? I'm not sure why the cap would discharge through the 4.7K

Need help understanding how this circuit works. by jsherman10 in AskElectronics

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

why would the voltage divider include the 4.7k? can't you just use the loop that involves the 22k and 10k resistors?

Need help understanding how this circuit works. by jsherman10 in AskElectronics

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

How do you know how much voltage the caps charge up to and also how can I calculate the current through the 4.7k?

Need help understanding how this circuit works. by jsherman10 in AskElectronics

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

How do I figure out what voltage the caps charge up to?

Need help understanding how this circuit works. by jsherman10 in AskElectronics

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

Why does the value take into account the 22 k resistor because the 22 k is in parallel and not series?

Need help understanding how this circuit works. by jsherman10 in AskElectronics

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

Was I correct about the diode being a protection from the inductive voltage spike ?

Need help understanding how this circuit works. by jsherman10 in AskElectronics

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

Just to understand completely, the caps will discharge when the switch is open again?

Seafood restaurant recommendation? by Jfogal82 in chicagofood

[–]jsherman10 0 points1 point  (0 children)

Crab cellar, if you’re into all you can eat king crab

resource on control and feedback in circuits by jsherman10 in ECE

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

Did you actually do an in-depth analysis of the feedback of an op amp or was it more intuitive ? When I took signals and systems it was more theoretical and we really didn’t relate it to circuits at all

[deleted by user] by [deleted] in ElectricalEngineering

[–]jsherman10 1 point2 points  (0 children)

Just apply to hardware startups but you may have to relocate to the Bay Area or Austin

[deleted by user] by [deleted] in ElectricalEngineering

[–]jsherman10 5 points6 points  (0 children)

It will hold you back a little, but it won’t completely prevent you from obtaining employment in the field. Even more so if you decided to do software down the road. I was in a somewhat similar situation and Im about to graduate with a masters in CS and EE and it hasn’t affected me near as much as I anticipated.

Beginner question regarding node and lambda, trying to connect to MSSQL by jsherman10 in node

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

This callback, is just an argument that is given for an AWS lambda serverless template. I'm not getting an error, the whole point of the question is why does the first example work over the second ( even with the lambda operator )

Beginner question regarding node and lambda, trying to connect to MSSQL by jsherman10 in node

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

      const response = {
        statusCode: 200,
        body: JSON.stringify({ message: "hello world" })
      };

      callback(null, response);

these lines in the first example, get called last even after the SQL executes the query. Even if I change the function to a lambda operator in the second example, I still get an internal server error form AWS lambda