Unregulated simple all glass vape

Flotsam

Well-Known Member
Up and running off the same power source as the heater


That's all the actual components now need to figure out better housing and make some updates to code to enable the buttons and other minor updates.
curious if you have any estimates for power consumption?
so the PWM switching is all handled by the Pico board?
Was there existing code that you could make use of?
Nice job, this is fun to watch.
 

highvaper

Well-Known Member
curious if you have any estimates for power consumption?

Not just estimates - real time power consumption now - there is a live volt reading and knowing the restance of the element it works it out live - quite cool to watch it adjust power in watts and not the arbitrary level of 0 to 10 for the pwm - there is now a temp/watt graph

so the PWM switching is all handled by the Pico board?

Yea all regulation is handled by the rp2040 - the actual power is controlled by a separate mosfet circuit - i wanted to keep this separate as it then allows the board to be used with solid state relays, normal relays and switched stuff.

Was there existing code that you could make use of?

I used some libraries for some hardware like the display, rotary dial and the simple pid library to do the maths.

Take a look at the repo on github its all available for people to use if they want - i have added some updates recently and will add more soon as i have already added some bits for the new leds.
 

Flotsam

Well-Known Member
Take a look at the repo on github its all available for people to use if they want - i have added some updates recently and will add more soon as i have already added some bits for the new leds.
Excellent job! congrats , Maybe i missed it but do you have the github link?


ooh ooh I want next hit!
 
Last edited:
Flotsam,

highvaper

Well-Known Member
Any reason you choose rp over an esp32?

I had a bit of experience with picos an had some knocking about when i started the project off so have kind of just rolled with it.

I suspect if i started from scratch i would probably go down the esp32 route now but there isnt much difference between them for my needs - the esps are a bit faster but the pico has the pio instances which can be super fast (so far not needed to use them for this though).

Wifi/bluetooth on board would be useful for other things but for a vape the last thing i want to do is tie it to a mobile with bluetooth.
 
highvaper,
Top Bottom