Are there any Espruino 1v4 voltage regulator specifications anywhere? #4419
Replies: 1 comment
-
Posted at 2015-02-10 by @gfwilliams Hi, The Espruino 1v4 regulator is a Torex XC6202. The datasheet is linked - it'll do 150mA max, so it's possible it'd work with the ESP8266 and a big capacitor, but it could be a stretch. I'd be really interested to see how you get on though. The Pico is using the Microchip MCP1703T - unfortunately it's not pin compatible, but it has quite good quiescent current and is happy at 250mA normally. Posted at 2015-02-10 by asez73 Thank you! Posted at 2015-02-11 by @gfwilliams Yes - although the LM1117v33 does have a 5mA quiescent current - so if you were thinking about running off a battery that's probably out the window. Posted at 2015-02-11 by asez73 You are right, finally the MCP1725-3302E/SN seems to be a much better choice with a quiescent current of 120 μA and a maximum current of 500 mA. Posted at 2015-02-11 by @gfwilliams Thanks! That's a really neat chip. There are loads of uses for a regulated supply that can easily be shut off. Posted at 2015-02-11 by asez73 Ok, so digging further there are others voltage regulators which 'could' be of some interest in various contexts:
Clearly those 3 regulators are more expansive than the MCP1725-3302E/SN and they usually don't admit more than 5.5V in input... If anyone has some experiences to share about this type of problem I'd be quite interested to share. Posted at 2015-02-12 by tage I think that alternative #3 is a good choice. the input voltage range is interesting. I did not understand you warning about that Vout is 3.8V if Vin is above 3V. that is a misunderstanding. what the data sheet is talking about is that it can deliver up to 3A continuous current if Vin is at least 3V when Vout is 3.8V. if you have Vout set at 3.3V you will have 3A available even at much lower input voltage than 3V. Posted at 2015-02-12 by DrAzzy #3 is a considerably bigger deal than the others; it's a switching regulator and requires a number of external components, though in exchange for that, you get higher efficiency, and in that case, the ability to do both buck and boost. Oh, and it's a 20-pin TSSOP w/exposed pad or DFN, and it costs almost ten bucks a pop at digikey. Posted at 2015-02-12 by asez73 Hi, yes, you are right:
And all those components won't support to high an input voltage. Posted at 2015-02-12 by DrAzzy You can fit SOT-23 onto the Espruino Board prototyping area, too (some of those alternatives come in SOT-23-5). The pitch of SOT-23 is slightly finer, but it's no problem. Posted at 2015-02-13 by asez73 Ok, I have to purchase some components and make it happen now. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2015-02-10 by asez73
Hi, @gfwilliams
It happens that Limetrace sold me one Espruino rev 1v4 some months ago.
As noted in your github's page it has a different voltage regulator than the rev 1v3.
I was wondering what are it's specifications / references?
The idea is to use the ESP8266 as an uart<->Wifi device using it's low power modes described in espressif bbs.
In fact it shows a power peak to 450 mA for a few 30 ms but most of the time it stays far below (70 mA or so). It even can be put in a deep sleep mode at 10nA which is compatible with the general Espruino power consumption in deepSleep mode.
I hope a proper capacitor could leverage this power's peak and let a 'standard' Espruino board run on a battery operated mode.
This could help me produce a wifi sensor device that would connect only once a day or so for 20-30s transmitting it's data and then fall asleep with some recurring measurements done without the ESP8266 being awaken at all.
This also is a side effect of their AT firmware not being open source anymore. Which imply you have to use their modules with either your own firmware or just as an uart<->Wifi device without the benefits of these low power modes on the ESP8266 side.
Beta Was this translation helpful? Give feedback.
All reactions