I got some bread boards and a kit full of resistors, caps, LEDs, etc. On Amazon, and 3 esp32s (dfRobot boards) from digikey. Very exciting! I already blew an LED (current limiting resistor? Never heard of her!)

  • MyFeetOwnMySoulOP
    link
    fedilink
    arrow-up
    1
    ·
    11 months ago

    Yes I have vrms. I used the resistor because I was super excited to see if the stuff worked, so I haven’t read the docs for them yet.

    My current set up is an old Motorola phone charger soldered (poorly, but I don’t leave it plugged in) onto DuPont connectors which provides about 5.3v to the power bus on the bread board. I don’t plan on subjecting my esp32s to this set up until I have a little more practice with power delivery. While the esp32s are cheap, there not that cheap.

    • dragontamer@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      11 months ago

      Just in case you didn’t know…

      The reason why VRMs are used is because the effective-resistance of real-life circuits change. The ESP32 sometimes draws 150mA when the radio is on (aka: sometimes its resistance is 20 Ohms), other times the ESP32 draws 20mA when idle or even less when asleep. (ie: its resistance changed to 150 Ohms).

      VRMs are a device that will output 3V even if the output is 20Ohms or 150Ohms, or even 10,000 Ohms. VRMs aren’t perfect, you’ll see a ripple change of maybe 0.01V as the “resistance” of a circuit changes.

      Transistors (and computers) are magical devices that automatically change their resistances to do many things. So you need something like the 7915 voltage-regulator to counter-act this and change its own resistance up-and-down to keep the voltage consistent. Because transistors / computers only work if they stay within a particular voltage level (ESP32 prefers 3-ish volts).

      • MyFeetOwnMySoulOP
        link
        fedilink
        arrow-up
        1
        ·
        11 months ago

        So, what’s the special sauce in a vrm that allows it to compensate like that? How does it “know” what the target voltage is? Do you need a reference voltage? I still haven’t read the docs

        • dragontamer@lemmy.world
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          11 months ago

          So, what’s the special sauce in a vrm that allows it to compensate like that?

          The full answer requires roughly a 3rd year’s course in Electrical Engineering. I’ll try to summarize, but I’ll inevitably miss a concept or two.

          1. Transistors are the fundamental answer. Various VRMs are made from different transistors, but the core concept is that they have 3 pins: input, control, and output. The voltage on “control” controls the voltage on “output” (which is drawn from “input”). Fully understanding transistors is… difficult. So lets not talk about transistors, at least not at the beginner level.

          2. Instead of discussing raw transistors, there’s a combination of transistors called an ‘OpAmp’, which is easier to understand. This has 5 pins: positive-voltage-source, negative-voltage-source (usually tied to ground), PlusInput, MinusInput, and output. Ideally, the OpAmp creates “output = Infinity * (PlusInput - MinusInput)”. Yes, you heard me, times infinity. In practice, it is “only” times 10-million or maybe times 100-million, but just pretend its times infinity, its so much easier to understand.

          3. If you create a negative-feedback loop (that is, connect “output” to “MinusInput”), then the infinities cancel out and now PlusInput controls the voltage. Seriously, check the math. Say “A” is the gain (which is infinity), then…

          • output = A * (PlusInput - MinusInput)

          Except MinusInput is output, we connected them together. So replace it with output.

          • output = A * (Plus - output)

          Shuffle stuff around…

          • output = A * Plus - A * Output

          • A * Output - output = A * Plus.

          • (A - 1) * output = A * Plus

          • (A - 1) / A * output = Plus

          If “A is infinity”, then infinity-1 is infinity. (lol, yeah, math works like that. Infinity is a funny number), so this means that…

          • (infinity-1) / (infinity) * output = plus
          • (infinity) / (infinity) * output = plus
          • output = plus

          Now no matter what the output tries to be (which is changing because of changing resistances), the OpAmp will magically “hold” the voltage from plus and react in time.

          Yes, this works. Yes, it sounds stupid, the math works and I’ve made many creations that do this kind of analysis. In practice, since the gain is “only” 10-million, you get: 9,999,999 / 10,000,000 * output = plus, but that’s small enough that we can ignore the error.

          1. To provide a “constant” voltage into the PlusInput, we use a Zener Diode. Zener Diodes work by “breaking” on purpose. As it turns out, you can manufacture diodes to “breakdown” consistently at a particular voltage. You can buy ZenerDiodes that break down at specific voltages, which means that the Zener Diode’s output will always be the same voltage.

          Zener Diode + OpAmp is probably the simplest conceptual design for a voltage regulator. Real life VRMs include more features, like overcurrent protection and other detection. But you can imagine how additional OpAmps with just the right magic / wiring can provide these features.

          • MyFeetOwnMySoulOP
            link
            fedilink
            arrow-up
            1
            ·
            11 months ago

            Ah ha (great band)! Zener diodes! That was the only component in my kit I was unfamiliar with (aside from the various ICs), very cool tech.

            Another question:I have 5v and 9v vrms, and obviously I need 3.3v; given that a vrm guarantees a fixed voltage regardless of current draw, can I use a downstream resistor to step the voltage down to 3.3v? Or is that also gonna cause problems?

            • dragontamer@lemmy.world
              link
              fedilink
              arrow-up
              2
              ·
              edit-2
              11 months ago

              I covered this a bit earlier. Lemme repeat a bit:

              The reason why VRMs are used is because the effective-resistance of real-life circuits change. The ESP32 sometimes draws 150mA when the radio is on (aka: sometimes its resistance is 20 Ohms), other times the ESP32 draws 20mA when idle or even less when asleep. (ie: its resistance changed to 150 Ohms).

              Which resistor can you use to turn a 5V VRM into a 3.3V VRM when the ESP32 is sometimes 20 Ohms, sometimes 150 Ohms? Answer: you can’t. Not with a fixed resistor. You need a device that reacts and changes its resistance to match constantly. Aka: a VRM.

              Only voltage-regulators can solve the voltage regulator problem. You can build a voltage regulator out of transistors, op-amps, or other such devices. (You can build one out of a uC like Arduino even though its really jank… but ADCs exist for a reason and capacitors + inductors do funny things at funny speeds that an Arduino can control).


              Now, there are VRMs that are controlled by simple voltage dividers / aka simple resistors can control a VRM. But really, if you want 3.3V you should get a 3.3V voltage-regulator.

              Alternatively, you get an “adjustable” voltage regulator (really: its a voltage-regulator with a very low set voltage, like 0.6V or something). You then use a voltage-divider (aka: 2x resistors) to control the feedback pin. Its a bit complex but you gain a “user-configurable” voltage by just changing resistors later. For example, the LM317 is nominally a 1.25V voltage regulator, but with the following circuit:

              EDIT: It probably should be noted that the typical LM317 has 2V of dropout. That means 5V can turn into 3V, but not 3.5V (aka: only 1.5V of dropout). To have less dropout, you need a low-dropout voltage regulator.

              • MyFeetOwnMySoulOP
                link
                fedilink
                arrow-up
                1
                ·
                11 months ago

                Oh, right. Brainfart. Thank you.

                Man. These have all been very detail answers. thank you so much for your time and knowledge. Very helpful. I think I’ll try to build a vrm (for fun, not for my esp32) with this info.