this post was submitted on 08 Jun 2026
745 points (99.3% liked)

Technology

85245 readers
4812 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Kolanaki@pawb.social 86 points 1 day ago* (last edited 1 day ago) (3 children)

To control the amount of voltage used in making the heat and not immediately burst into flames, for one.

[–] stoy@lemmy.zip 69 points 1 day ago (1 children)

It is interesting to see old tech having clever solutions for stuff like this, these days the answer is 98% of the time is to slap a CPU on it.

It's boring!

[–] ImgurRefugee114@reddthat.com 27 points 1 day ago (4 children)

Wait til you hear about all the different technologies we use to generate electricity

[–] stoy@lemmy.zip 28 points 1 day ago (2 children)

99% spinning a generator and 1% direct solar panels

[–] Valmond@lemmy.dbzer0.com 10 points 1 day ago (1 children)

Hey, hasn't that panel number been going up lately?

[–] Rhaedas@fedia.io 5 points 1 day ago (1 children)

The amount of panels has been. Unfortunately as always our demand also keep increasing.

[–] Valmond@lemmy.dbzer0.com 2 points 1 day ago (1 children)

Kardashev level 1 here we goo!

[–] MonkderVierte@lemmy.zip 2 points 1 day ago

To ~~heat~~ power the super-AI!

[–] Duke_Nukem_1990@feddit.org 4 points 1 day ago

I am still giddy when I think about the way solar panels work. Still feels futuristic to me :3

yep, that’s right - ~~it goes in the square hole~~ we’re boiling water!

[–] rain_enjoyer@sopuli.xyz 4 points 1 day ago (2 children)
[–] ImgurRefugee114@reddthat.com 16 points 1 day ago (1 children)

You're right! Sometimes we let the kinetic energy of the liquid water itself spin the turbine, when we're feeling freaky.

[–] rain_enjoyer@sopuli.xyz 4 points 1 day ago

all of these, and gas turbines too, are synchronous. some wind turbines are almost-synchronous and some use giant inverters which is probably one of bigger mass uses of power electronics today

[–] SpaceNoodle@lemmy.world 3 points 1 day ago

It's just turning water into steam again, isn't it

[–] Korhaka@sopuli.xyz 7 points 1 day ago (2 children)

Doesn't that just need a voltage regulator? It's disposable so you don't never need to concern yourself with charging.

[–] empireOfLove2@lemmy.dbzer0.com 11 points 1 day ago* (last edited 1 day ago) (1 children)

A lot of them have selectable voltage/power levels as a "feature", which is easier to do via a mcu PWM controll than discrete electronics.

[–] rain_enjoyer@sopuli.xyz 7 points 1 day ago (6 children)

yeah it's more efficient this way but all you need is ne555 + mosfet tho? still no need for it to be turing complete

[–] raldone01@lemmy.world 11 points 1 day ago

There are really cheap mcus that need maybe one capacitor if even that. It is cheaper, easier and more flexible than the multiple components required to configure an NE555.

[–] empireOfLove2@lemmy.dbzer0.com 11 points 1 day ago* (last edited 22 hours ago) (2 children)

Yes, but think about it like you're a Chinese manufacturing engineer with only basic electronics education. You COULD do that design, build out the pcb, custom tool it to fit your plastic housing, etc etc.... Or you could go to the manufacturer down the street who already makes pre designed voltage reg MCU's on a board and spend like, 20 minutes in an IDE to code the specific voltage levels and button presses.

When production volume and turnaround time is the only things that matter in this shovel waste crap, "wasting" silicon is less expensive financially than building out the optimal solution.

[–] Aceticon@lemmy.dbzer0.com 2 points 23 hours ago* (last edited 22 hours ago)

Designing a board to run a microcontroller like that is actually pretty simple.

I've done it for fun with a couple similar microcontrollers, and whilst I'm an EE by training I don't do it professionally plus my training is from before embedded system, so I count as a Junior EE for that.

I'm pretty sure that even a freshly graduate Chinese EE can even on their own figure out the general recipe for integrating something this (following the datasheet, add crystal + load caps, plus about 1 caps each power pin for power filtering plus 1 global power filtering cap, plus possibly a pull-down/up resistor on the RESET pin) in a week or two and then for subsequent projects it will be feasible to do it in a few days.

Really, there's other shit in there (say, battery management) that's more work to figure out than how to add and place the parts for an entry level ARM microcontroller to work.

[–] rain_enjoyer@sopuli.xyz 6 points 1 day ago (1 children)

my guess would be it's a parts commonality thing, it's not hard to make it the old way, there are datasheets for it too. sure you could probably make tiny and cheaper (30x10mm? maybe smaller) analog board with two chips and mosfet working as pwm controller and current limiter, but it'll have different passives for different battery sizes and heater powers. or you could make one design with optional usb port that you might just not solder on, and depending on model you just put different firmware inside

[–] Hitchie_Rawtin@lemmy.world 5 points 1 day ago

The old way is actually the analog style you've mentioned, but that was the very early days of ecigs well before they became mass market, the cottage industry modding scene had no hope of creating sophisticated microcontrollers and the charger wasn't even USB, it was a DC jack & plug. Lavatube was the first time we had that kind of microcontroller regulation & then the DNA15 and DNA20 came out, got cloned by China and that changed the game forever.

The problem with the older way is consumers understand watts alone as a relatively consistent measurement of power much better than they would the relation between voltage, resistance & current draw. They didn't want to learn Ohm 's Law back then and wouldn't want to know about it now. Microcontrollers simplified that massively.

[–] terranoid@lemmy.cafe 9 points 1 day ago

With the economy of scale, it is probably cheaper to just drop a microcontroller in products

[–] Aceticon@lemmy.dbzer0.com 2 points 1 day ago (1 children)

A search in Digipart shows the cheapest price of this microcontroller as $0.10 whilst the cheapest price of the NE555 is $0.13

It really is THAT ridiculous.

[–] rain_enjoyer@sopuli.xyz 1 points 22 hours ago (1 children)
[–] Aceticon@lemmy.dbzer0.com 2 points 21 hours ago* (last edited 21 hours ago)

Yeah, it doesn't make much since if you think in terms of how many transistors are needed to implement each of them as the microcontroller probably uses hundreds of thousands more transistors than a 555.

That said, given reasonably recent processes die size for both are probably pretty close (I reckon most of the size of a modern 555 die would be the points to place the wires to the package) and with pretty similar yields (pretty close to 100%)

I wouldn't be surprised if the reason has something to do with economies of scale since a cheap microcontroller can pretty much be used for the same things as a 555 and a whole lot more than that, so it makes sense more of the former are manufactured than of the latter, plus I bet the process generation used in making the microcontroller is probably more recent and hence one where there are more fabs operating. This latter reason would also explain why this more recent 32-bit microcontroller is actually cheaper than older 8-bit ones with less built-in memory and fewer peripherals (such as the ATTiny ones).

[–] Korhaka@sopuli.xyz 4 points 1 day ago

I was just thinking that yeah again all it needs is some basic components. Like how a light bulb or fan might have multiple power settings but I don't expect them to be able to run doom.

[–] tetris11@feddit.uk 1 points 1 day ago (1 children)

ne555

Thanks for the interesting read. Real nifty little timing/switching circuit!

[–] rain_enjoyer@sopuli.xyz 2 points 1 day ago (1 children)

it's kinda dogshit but for this application it (cmos version) would be good enough. or better than that, there are dedicated pwm signal generators. i meant this thing in terms of complexity needed

[–] tetris11@feddit.uk 3 points 1 day ago

It was a good insight into how the lightbulb dimming tech of the 80s/90s worked. Also why the dimmer switches back then were so dangerous with the capacitor likely just a few mm's away from the light switch which might not have been properly wired because UK homes back then didn't run a neutral back from the switch, but daisy-chained the switch and the bulb together and then ran the neutral back from the bulb

[–] khannie@lemmy.world 2 points 1 day ago (1 children)

Some of the larger disposables do have a charging port. I guess it allows them ship a smaller battery which is good

[–] rain_enjoyer@sopuli.xyz 5 points 1 day ago

then you have to interface with charger anyway so ig this makes some more sophisticated chip make sense

[–] rain_enjoyer@sopuli.xyz 2 points 1 day ago* (last edited 1 day ago) (1 children)

ok fine i'd put there a current limiter which you can make with 2 transistors and a diode. no need for an entire microcontroller. it's often included with batteries these days anyway

[–] terranoid@lemmy.cafe 5 points 1 day ago* (last edited 1 day ago) (1 children)

I believe lithium ion batteries need custom chips just to charge and discharge smartly

Shit, even connecting to modern USB c to negotiate voltage you need a controller

[–] rain_enjoyer@sopuli.xyz 1 points 1 day ago* (last edited 1 day ago)

i think you can get away with resistors when you can work with 5V, up to 1.5A. lithium batteries need current limiter in series with voltage limiter, and this alone can be made in a very simple way, unless you want to know when battery is charged, or if you want extra efficiency that smps gives you, but this only makes sense for larger batteries (phone-sized and up) or when you want to handle everything to charger and connect battery to charger directly. then i think you need controller