Тёмный

EEVblog  

EEVblog
Подписаться 947 тыс.
Просмотров 40 тыс.
50% 1

Some experiments on the Casio FX260 Solar II scientific calculator.
Improving the solar capacity, trying out a Tritium nuclear battery!, current measurement, and probing of the PCB and LCD signals.
BONUS FX991EX Teardown and soldering iron burn!
Forum: www.eevblog.com...
EEVblog Main Web Site: www.eevblog.com
The 2nd EEVblog Channel: / eevblog2
Support the EEVblog through Patreon!
/ eevblog
Stuff I recommend:
kit.com/EEVblog/
Donate With Bitcoin & Other Crypto Currencies!
www.eevblog.co...
T-Shirts: teespring.com/s...
Likecoin - Coins for Likes: likecoin.pro/@...
💗 Likecoin - Coins for Likes: likecoin.pro/@...

Опубликовано:

 

16 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 193   
@ElmerFuddGun
@ElmerFuddGun 6 лет назад
n! - Does factorial really "give it a workout"? Instead of coding in how to calculate it why not just use a lookup table up to 69? I suppose it would depend on how much code space was left but it would be way faster.
@masondaub9201
@masondaub9201 6 лет назад
I have the same calculator and I just tried some really weird roots to give it a work out and it took about the same amount of time as 69!. I also think if it had a look up table it would be instant instead of having that small delay. I also think these ASICs have the memory hard programmed into the silicon so it would make much more sense to go for the route without the huge float array if you had the processing capabilities. Factorial can be programmed with a simple float factorial(int n){ float answer = 1; for(n,n>1,n--) answer*=n; return answer; } (in C) which is way less programming space than 69 floats.
@ElmerFuddGun
@ElmerFuddGun 6 лет назад
Mason - I think you are right that it is going through the calculations base on the update time. I like your function call but would the assembled code really be less space? It has a ten digit plus exponent display that could be stored in simple BCD in just 6 bytes. 6 x 70 = 420 bytes plus the lookup code. How much for floats? If I had the code space I would use the table just to get the speed but it seems clear that they did not.
@masondaub9201
@masondaub9201 6 лет назад
I haven't had much too much experience in assembly unfortunately and the size of the function will depend a lot on the microcode and instructions they've implemented into their ASIC. But I'm assuming it wouldn't take even 20 words, let alone 420. I tried to compile it with arduino real quick just to see how many bytes it would take to compile that function but it said 444 before and after the code was inserted. And if I assume that max displayable digits are what is stored in memory (10 digits) and 2 for the exponent, log2(9999999999) + log2(99) ~ 40 bits or 5 bytes per number in the lookup table. With 69! being the biggest number we can show on the calculator with 2 digits for exponents that leaves us with 345 bytes. The lookup code would just take 2 or 3 bytes to say have a starting point address and then add the factorial to it and then go to that lookup address. So it would probably take 350 or so bytes in total. Since I'm assuming they role their own chips they would just require more memory location be built in as long as they didn't need to add an extra bit to the memory address. My guess is that they didn't see it as necessary to build or spare the extra memory since their ASIC is clearly fast enough.
@ElmerFuddGun
@ElmerFuddGun 6 лет назад
Mason - Close but you forgot to store zero so it is 70 numbers. And adding log2(digits) + log2(exponent) isn't quite right as you are adding the fractions but they are separate numbers. log2(9,999,999,999) = 33.22 but .22 of a bit is a bit (ha!) hard to store in a non-analog processor! ;-) 2^33 = 8,589,934,592 so you need the 34th bit. And for the exponent log2(99)=6.63. If we round both of them up we have 34+7=41 bits to store but also the hassle of converting it all back to a format for display which is likely 5 + 1 = 6 bytes. You can do it but will it take less bytes to code it than what the 6 byte wide table takes? Also, there is a need to test that it is an integer and not negative in both versions so that adds a bit more to the code size. That's interesting that the Arduino code size didn't change. Must be a minimum amount or something? Weird. But a big reason to use the table is because 69! seems to be a common speed test. "Hey my calculator is faster than yours!" Increased sales!
@masondaub9201
@masondaub9201 6 лет назад
oh right, you got me there, I did forget 0. I added them as seperate number because computers represent floating point numbers as the mentesa (the decimal) and then the power of 2. I assumed if you were going to do a lookup table that you would just represent it as a power of 10 because that is how it is displayed and there is no reason to add extra complexity. I just wanted a decent estimate as they may just be representing it as a standard (long) floating point number, 8 bytes, or try to save some space. And I rounded down the 33 because I'm not actually sure the calculator goes up to 9.999999999, and they wouldn't even need to in the lookup table seeing as how the largest is 69! (1.71*10^98). I did round up the 6.63 because you do need the full range there. So I still think my best case scenario for memory storage required is still decent. So the range would be 350 bits to 560 bits. I am still very much convinced that a talented programmer could easily program a factorial function with around 20 bytes (which corresponds to around 20 assembly instructions!) which is an order of magnitude less than the lookup table. Yeah I'm not really sure why the arduino IDE did that. I really should load up the PIC c compiler but I was feeling lazy. I don't think that is a major selling point of this calculator, I think it is just meant to be a budget calculator that never runs out of juice. But I think we might be worrying too much about the specific details of a random calculator lol
@yerffejmurffy
@yerffejmurffy 6 лет назад
Hahaha Dave is probably the only person in the world that can get super excited about super charging a Casio and then get people to watch his 20 min video. I just was hoping he was pull out a flux capacitor and solder that into the calculator!
@andruloni
@andruloni 6 лет назад
He used up all his flux caps on 121GW multimeters
@brettleach6565
@brettleach6565 6 лет назад
If you can source the thiotimoline for the electrolyte, he'd do it.
@wilbertbirdner1303
@wilbertbirdner1303 6 лет назад
It's not solar powered, it's wireless charging!
@rogerbeck3018
@rogerbeck3018 6 лет назад
from the solar road
@smallmoneysalvia
@smallmoneysalvia 6 лет назад
I appreciate that you use low end scopes for these videos. I know nothing more is needed, but it’s nice to see that you don’t just jump straight to your high end scopes for simple things.
@JJayzX
@JJayzX 6 лет назад
Damn people blind if they thought that was carbon fiber, he showed it very close last time.
@JGnLAU8OAWF6
@JGnLAU8OAWF6 6 лет назад
Or they just haven't seen carbon...
@SproutyPottedPlant
@SproutyPottedPlant 6 лет назад
JJayzX I'm registered blind does that count? 😀 Although even I know it's plastic.
@diatomsaus
@diatomsaus 6 лет назад
Or because stupid tripod companies market their bollocks as "x69! layers" and claim the "stripes increase rigidity", which gullible people fall for...
@mikesradiorepair
@mikesradiorepair 6 лет назад
Modded mine with a 47uF 10V tantalum and works great. Not so large that it effects the start up time but large enough that it stays on for a surprisingly long time. Like you I'm a Casio calculator fan. My daily driver these days is the FX-115ES PLUS. Sells for just under $13 USD. For me it has the all important hexadecimal, binary, decimal, octal conversion. Yes, I work on old shit where I need to convert decimal to binary or binary to hexadecimal.
@SianaGearz
@SianaGearz 6 лет назад
I like SHARP calculators, because they need very few keypresses for any operation and you get hex even on cheapest models. But i wish they still made EL-506P though :( I used to have a Tozai-made clone of that, but it has worn off. It's a metal faceplate model from the 80ies.
@Crazytesseract
@Crazytesseract 4 года назад
I use a fx-991MS, an 991ES PLUS , and an 991EX, and the free42 app on the phone. I also have a fx-992VB (1994), but the display doesn't display all segments. The machine is still working though! I know more about Casio calculators than I am supposed to know.
@UnOrigionalOne
@UnOrigionalOne 6 лет назад
I went to Wal-mart last night after watching your first fx-260 Solar II video. I could't help myself.
@mgscheue
@mgscheue 6 лет назад
I'm tempted, too. Really nice for the price.
@ElmerFuddGun
@ElmerFuddGun 6 лет назад
12:30 - But what is the turn on time when just pushing the ON button when it already has power from the solar panel? That's what matters not the time from when you turn on the room lights.
@uwezimmermann5427
@uwezimmermann5427 6 лет назад
the higher ESR might help you at start-up as well, since it will drop voltage during the start of the charging and the cap would not look as a short to the charging circuit. Of course it will make true charging of the cap slower... About the attempt with the nuclear battery - since the "solar cell" actually is a module with 4 series connected cells you need to get light intensity onto all cells, which might be difficult with your tritium tube assembly since it is to narrow...
@Gengh13
@Gengh13 6 лет назад
An eevblog Casio calculator with parallel and easily accessible engineering exponents would be awesome, but even if Dave would like to do it, it would be impossible to recover the development cost.
@SianaGearz
@SianaGearz 6 лет назад
What kind of features would you like in such a calculator?
@iainportalupi
@iainportalupi 6 лет назад
What if you made a roadway out of these calculators...
@zer0b0t
@zer0b0t 6 лет назад
Now that you are modding calculators, have you ever tough of replacing the refractive film behind the numbers with something else like that paint that is used on the roads that shines under light.
@SianaGearz
@SianaGearz 6 лет назад
I think retroreflective coating is a bad idea, because your eyes don't actually emit light, and i think wearing a head lamp just to be able to read a calculator is stupid. But what isn't such a terrible idea is EL film. It's a thin film backlight that is normally white, but emits azure glow when powered with something like 100V but there's very little current going through it. I wonder how small you can make an EL step-up circuit? After all, i've seen wrist watches do it.
@zer0b0t
@zer0b0t 6 лет назад
In practice it actually is not such a bad idea, you don't need a light behind you to see the numbers (because the coating is white), just some ambient light and in many situations it's better than the regular old-school reflector since in lower light conditions they don't reflect that well because you need to see the reflector from the correct angle plus the correct angle for the LCD and they are often not the same. On the other side, the retro-reflective coating scatters better the light, the only problem may be using it with a bright light behind you like the sun. It may be a bit too reflective, but you could use some sort of matte filter. There are many types of retro-reflective materials, like tapes, stickers, films, paints and even fabrics so there's quite bit of options to try.
@Crazytesseract
@Crazytesseract 4 года назад
Your calculator PCB is made in the 47th week of 2017. So the calc is made in 2017 or 2018. As for the case, it is indeed normal ABS (or ABS+ PC) plastic that is embossed with the raised pattern.
@OverUnity7734
@OverUnity7734 6 лет назад
decades ago I took a part a "credit card" calculator, it was a bit thicker than a credit card, and it had the smallest non-SMD red LED I have ever seen. You coldn't see the LED when it was all together. Not sure what they needed it for. Surely the reverse current from the storage capacitor was not enough to hurt the solar cell.
@qwertykeyboard5901
@qwertykeyboard5901 2 года назад
voltage clamping. red leds start conducting at ~1.5v and really take off at 2v Really handy if your moding cheap lcd electronics to be solar powered.
@yaosio
@yaosio 6 лет назад
You should mod the calculator so it runs off mains power.
@Crazytesseract
@Crazytesseract 4 года назад
What purpose would that serve?
@chebhou
@chebhou 6 лет назад
The start-up time won't be a problem unless it is fully drained right? also would a resistor on series with the cap eliminate the start-up time?
@oswaldjh
@oswaldjh 6 лет назад
The solar cell might pass though a diode before charging the capacitor in order not to drain the capacitor when you cover it up.
@chef1arjunaidi
@chef1arjunaidi 3 года назад
I just love how Dave gets all excited over capacitors
@MrMegaPussyPlayer
@MrMegaPussyPlayer 6 лет назад
I would have given a damn about the case and soldered the 1F in ...
@johnfrancisdoe1563
@johnfrancisdoe1563 6 лет назад
MrMegaPussyPlayer I think there was room, if looking closely at the placement of those ribs.
@MrMegaPussyPlayer
@MrMegaPussyPlayer 6 лет назад
Not enough for the 1F one ( 7:34 )
@ChrisSmith-rm6xl
@ChrisSmith-rm6xl 3 месяца назад
So, did you ever decide that the extra turn on delay was annoying? My theory is that in most cases you would either not get to 0V (laying it down face down for a a minute or so) or there would be plenty of time for it to to charge up while you put the cover on to the back before you hit the on button.
@xboxmaster555
@xboxmaster555 6 лет назад
Dave only you can upload almost a 20 min vid about a calculator and make it interesting
@ZOOT1000100
@ZOOT1000100 6 лет назад
What I've learned is - 1. A rat's scrotum isn't of any value. 2. Shits and giggles are valid pastimes. 3. Nothing's worse than a plastic nipple. Thanks Dave!
@Crazytesseract
@Crazytesseract 4 года назад
When turning it over, you better tape down the LCD to the case. If the display connector strip comes off, it would be difficult to bond it back!
@TrickyNekro
@TrickyNekro 6 лет назад
About that no fraction thing... I mean... you can just buy two and switch the boards... BTW the connection for the no fraction might as well be under the blob... would make more sense also...
@TheVirindi
@TheVirindi 6 лет назад
I was thinking that maybe it is just a different board without that button connected...
@DVSProductions
@DVSProductions 6 лет назад
Or maybe c120 is responsible for this setting
@johnfrancisdoe1563
@johnfrancisdoe1563 6 лет назад
Valentino Saitz Or maybe they just omit a part from the button mechanism itself. For example if these are really tactile domes behind the buttons, they can just omit the metal dome itself.
@TrickyNekro
@TrickyNekro 6 лет назад
I really doubt they use a cap for that, it could be a bond wire on the die, it could be whatever, but a cap? Odds are slim...
@martinda7446
@martinda7446 6 лет назад
Holy goddam shite, 220uF in a pin head...Good grief imagine it!
@muctop17
@muctop17 6 лет назад
Why enlarge operating time, while you can´t read the display in the dark??
@brettleach6565
@brettleach6565 6 лет назад
Simplest path to no fraction model. No conductive pad on the key. (Or post to collapse a tactile dome.)
@jpl9148
@jpl9148 3 года назад
What would be great is if you could convert it to a Wrist Watch Scientific calculator!
@PlasmaHH
@PlasmaHH 6 лет назад
Next level upgrade is a way the extra cap gets only switched into when the other one is full enough to have short switch on and long stay on.
@gblargg
@gblargg 6 лет назад
DId you remember to discharge the cap before testing it with your LCR meter?!? /s
@danielegger6460
@danielegger6460 6 лет назад
LOL, just came back from Biccamera Akibahara and they still have a good selection of calculators. Would be heaven for Dave!
@masterluu8
@masterluu8 6 лет назад
At $10 you could just buy the standard and the NF model and swap cases. I know that's something I would have come up with back in school.
@KostasAlbanidis
@KostasAlbanidis 6 лет назад
Maybe they removed the membrane from the key and the painting from above in the no fraction model? Maybe even the N model can do fractions as well if you can ...hack the keyboard beneath the deleted key?
@Inspironator
@Inspironator 6 лет назад
You are so funny...geeking out over capacitance values!
@NetworkXIII
@NetworkXIII 6 лет назад
Great job as always Dave, enjoyed it a lot.
@daveb5041
@daveb5041 6 лет назад
Trony is just as good as sorny or magnetbox or pranasonic.
@Spirit532
@Spirit532 6 лет назад
Don't forget smasnug and nichocn capacitors!
@ElmerFuddGun
@ElmerFuddGun 6 лет назад
14:32 - Looks like 4 levels not 3 to me... ;-P
@EEVblog
@EEVblog 6 лет назад
Err, yeah, doh.
@StephenFarthing
@StephenFarthing 6 лет назад
I’m a bit worrried about the lack of wukkas, and the buggering off of traces. I can’t find anything about them in Horowitz and Hill. Guess they must be professional terms designed to confuse us mere amateurs:-) . Keep up the good work Dave !
@AmRadPodcast
@AmRadPodcast 6 лет назад
FYI Alan Wolke did a nice live tech talk yesterday at the NJ amateur radio club an spoke a little bit about dielectric absorption. Hopefully he posts it up on RU-vid.
@ElmerFuddGun
@ElmerFuddGun 6 лет назад
I'll have to keep an eye out for that. Alan has some good videos and they keep getting better.
@Darieee
@Darieee 6 лет назад
Yeah but .. those 2 seconds you wait - once in never basically - you can think of what awesomeness is happening behind the scenes, and get waay more utility out of that than the lost 2s could ever account for
@freeNode5
@freeNode5 6 лет назад
tried to find those tritium tubes for sale but only saw tubes a fraction of that size
@ElmerFuddGun
@ElmerFuddGun 6 лет назад
0:48 - "carbon fffffffibre..." Say it don't spit it! LOL. ;-)
@maxpayneau
@maxpayneau 6 лет назад
I love such kind of nerdy video :)
@mikewillis1592
@mikewillis1592 6 лет назад
Nice large cap and you can operate it in the dark. Pity you can't see the display but never mind. NF model probably just doesn't have a working button.
@AL_O0
@AL_O0 6 лет назад
As for the backplate on the 991, yes it’s indeed for stiffening, that thing is an absolute brick, you can throw it around, drop it, I had one with a arched screen, it took an incredible amount of force to completely crack it, I stabbed it with pens and scissors and even dropped a hard drive motor on it and kept working. (It was the earlier model, but it’s the same aluminium piece)
@SianaGearz
@SianaGearz 6 лет назад
The second calculator is configurable! There is a handful of solder bridge pads on the PCB. They look like test points but split in half. Hacking time?
@nrdesign1991
@nrdesign1991 6 лет назад
16:06, it does NOT do graphing.
@EEVblog
@EEVblog 6 лет назад
Correct, I stand corrected.
@jam99
@jam99 6 лет назад
What type of cap is on that on the 991EX? It looks electrolytic but wouldn't the leakage be too high? Maybe it's just about ok and they use a bigger solar panel than absolutely necessary just to be able to use an ultra cheap cap. Also beware leakage with tants at higher temperatures.
@Toxicity1987
@Toxicity1987 6 лет назад
My first Idea, exchange that tiny cap with a super capacitor. Calculating in the dark forever!! :D.
@SurajGrewal
@SurajGrewal 6 лет назад
Carbon fiber is very hard to mass produce,those patterns are engravings made in the injection molding die.
@skuzlebut82
@skuzlebut82 6 лет назад
Q-Bert! I miss that game.
@NicksStuff
@NicksStuff 7 месяцев назад
I wonder how long the nuclear battery would take to charge the cap you installed
@DonaldSleightholme
@DonaldSleightholme 6 лет назад
I’ve had a idea, try spreading the Tritium across more solar panels and put a inductor in series to increase current? 🤔🤷‍♂️
@danieltaon7333
@danieltaon7333 6 лет назад
i think metal back plate can behave like radiator that is taking heat when exposed on sun?
@petersage5157
@petersage5157 6 лет назад
I'm curious about the extra wiggle wiggles in the traces near all those capacitors. Controlled impedance maybe? Autorouter shenanigans?
@HaraldSangvik
@HaraldSangvik 6 лет назад
You should have tried soldering the tritium battery in it's original config to the calculator!
@billl605
@billl605 5 лет назад
She'l no stand the strain harald, she'l blow for sure.
@humidbeing
@humidbeing 6 лет назад
Noob question: Why are the traces so large coming from the solar cell? Surely the current level must be tiny. Seems like tiny traces would work fine.
@chef1arjunaidi
@chef1arjunaidi 3 года назад
I love eevblog, the nerdiest show ever
@CliveChamberlain946
@CliveChamberlain946 6 лет назад
Thanks Dave! I'm sending my youngest son to college this year and it looks like that EX (with a 220uF mod..) with do the trick. I gave him the 9750Gii last year but it seems the programming makes it ineligible for exams.
@johnfrancisdoe1563
@johnfrancisdoe1563 6 лет назад
Cliff Matthews Depends on the country or exam system. Some places allow bringing as many books and notes as you can carry, so a few extra kilobytes of calculator memory is not a problem. Others still focus on testing rote learning of rarely used formulas so they insist on not letting students bring any way of storing extra notes or preprogrammed formulas. Bans on phones and other ways to communicate makes more sense as they want to be sure they are not getting results from someone else, inside or outside the room.
@Crazytesseract
@Crazytesseract 4 года назад
@@jameshewlett7798 You own all Casios?🙄?? Assuming pockets, let's count: fx-10, 15, 19, 21, 102, 201P, 39, 140, 180P, 3400P... 310, 350, 510, 570, 370, 361, 81, 82, 85, ... I stop here (those were only a fraction of the 70s and 80s!).
@Crazytesseract
@Crazytesseract 4 года назад
@@jameshewlett7798 Great. And i have one Casio from 1994 fx-992VB broken, and few from 2000s - fx-260 solar, fx-991MS, 991ES PLUS, 991EX, and basics : a credit card size SL-760LB, SX-300P and a dual leaf SX-220. A micro / nano museum? Do you have any of these? 😀
@michaelpiotrowicz6100
@michaelpiotrowicz6100 6 лет назад
Could the no fraction model just have a dot of kapton tape under the button? Same board, same code, same keypad.
@manuelcastaneda7838
@manuelcastaneda7838 4 дня назад
Have you a instructor booklet
@xharjhonsuarez7585
@xharjhonsuarez7585 6 лет назад
Since im a engineering student i have my calculator everywhere . Watching this is like a porn 😂😂
@leocurious9919
@leocurious9919 6 лет назад
You didnt link it in at the end of the video. So here is the video: ... ah wait i cant copy and paste in youtube anymore. So no link.
@orondf343
@orondf343 6 лет назад
Anyone else notice the CapXon capacitor in the 991EX?
@lachywocky
@lachywocky 6 лет назад
What if the solar panel is exposed to light while the unit is switched off does it charge up capacitor and therefore switch on time is not affected in that case??
@00Skyfox
@00Skyfox 6 лет назад
I always thought soldering iron burns smelled like rancid peanut butter. Still better than spit burning in a light socket.
@eeep73
@eeep73 6 лет назад
4 seconds for factorial 69. on an old casio fx-120 whith vfd display.
@nothing-mm8ui
@nothing-mm8ui 3 года назад
how many volts does the calculator need to run i have one of these and the solar cell on it broke so im planning on putting a battery or usb in there to power it as a joke
@Budmur
@Budmur 6 лет назад
It might be fun to compare the Casio build quality and techniques to the SwissMicros.
@poptartmcjelly7054
@poptartmcjelly7054 6 лет назад
The particular shape that's embossed in the plastic actually has a name but i can't remember what it's called.
@RobertSzasz
@RobertSzasz 6 лет назад
11:30 Does the meter have a mosfet or other protection to isolate the current measuring bridge when not in the correct mode? It looked like there was no shorting going on.
@userPrehistoricman
@userPrehistoricman 6 лет назад
clearly it's an LCD heatsink because the calculator is so powerful
@RedwoodRhiadra
@RedwoodRhiadra 6 лет назад
Actually, the Duracell Bunny came first, by 15 years.
@EEVblog
@EEVblog 6 лет назад
Yes, but the big "to do" was when Energizer came out with the ads. That backfired on them when Duracell "re-introduced" their bunny, and everyone promptly forgot about Energizers bunny campaign.
@johnfrancisdoe1563
@johnfrancisdoe1563 6 лет назад
EEVblog Except people keep mentioning the "Energizer bunny" out of context, so much that having never actually seen an Energizer branded bunny commercial, I just thought Duracell and Energizer in America was the same company as Duracell in Europe and they just edited the text in the commercials for different markets.
@SimoWill75
@SimoWill75 6 лет назад
Looks nothing like Carbon. Can't believe anyone would think it was. Are they watching in 144p?
@johncundiss9098
@johncundiss9098 6 лет назад
At 1 minute in..... Now THAT'S A BLOB. Love it.
@markcummings150
@markcummings150 6 лет назад
Maybe the NF model has a non conductive button ?
@electronic7979
@electronic7979 6 лет назад
Nice video
@DonaldSleightholme
@DonaldSleightholme 6 лет назад
how about powering a dc shunt motor to rotate a fan? 🤔🤷‍♂️
@anttikantola8128
@anttikantola8128 6 лет назад
Hey genous guys )) can you tell me does a medical companies made nuclear battery radiate ? can i trust my painreducer implant not to radiate ? Battery told to last 15 years.
@nrdesign1991
@nrdesign1991 6 лет назад
The NF model may just have a piece of tape on the pad, or a scratched/lasered connection leading up to the button.
@EEVblog
@EEVblog 6 лет назад
Could well do.
@SianaGearz
@SianaGearz 6 лет назад
Why couldn't a configuration trace/pad hide right under the epoxy blob? Or simply different PCBs. I'm sure they reuse silicon a LOT, but reusing PCB layouts completely doesn't really save you much cost at volume, unless you have to order batches that are too large to consume and have to store them.
@vk3hau
@vk3hau 6 лет назад
"Do your self a favour" last time I heard that was from Molly on countdown
@Fake_Blood
@Fake_Blood 6 лет назад
WHat's C120 for on the positive side of the solar cell?
@djvanzz
@djvanzz 6 лет назад
Forgot to link in NurdRage!
@EEVblog
@EEVblog 6 лет назад
It's at the end.
@qwertykeyboard5901
@qwertykeyboard5901 5 лет назад
some light can get through the back side of the solar panel
@angelioto007
@angelioto007 6 лет назад
I smell a new scope review
@SidneyCritic
@SidneyCritic 6 лет назад
I so didn't want to watch another calculator video, but it turned out to be a lot of fun. #HotModder. I hear about charge pumps, but I don't remember a vid explaining them. Maybe another experiment tutorial, hint hint.
@SianaGearz
@SianaGearz 6 лет назад
EEVBlog #473
@joshuabest100
@joshuabest100 6 лет назад
What was the sum you did at the start of the video
@okaro6595
@okaro6595 6 лет назад
It requires at least 50 lux. In that way it is no better than the fx-991 I bought in 1984 though the latter did not have the reservoir.
@EEVblog
@EEVblog 6 лет назад
Watch my previous video, it works on 20-30 lux.
@dezeekat
@dezeekat 6 лет назад
do some wicked supercap in there!!!!
@OverUnity7734
@OverUnity7734 6 лет назад
attach a Tesla S battery pack to it. It might take a bit to charge.
@kevoice
@kevoice 6 лет назад
Energizer bunny?!? Where's Jacko? Oi!
@Nermash
@Nermash 6 лет назад
Is that a new scope Dave :)
@ebrotherproductions4383
@ebrotherproductions4383 5 лет назад
How do charge it
@todesgeber
@todesgeber 6 лет назад
if the boot time of your calculator is an actual concern then you probably need to calm down a little bit...and make your employer buy a top shelf "expensive" calc toy.
@KX36
@KX36 6 лет назад
Almost nothing sold as "carbon fiber" actually is, short of supercars. Mostly it's just a sort of woven/reflector *style* black plastic, maybe with some carbon in it, but not including any of the processes that make carbon fibre strong. It's like how "tempered glass" phone screen protectors are very obviously plastic.
@PixlRainbow
@PixlRainbow 6 лет назад
KX36 some propellers and hobbyist model aircraft parts are in fact carbon fiber
@SianaGearz
@SianaGearz 6 лет назад
Huh? I had a tempered glass phone screen protector that was fairly obviously glass. It became obvious because it shattered a few weeks in, and it didn't just break in one spot, when it shattered, it shattered across the whole surface, but it was really not possible to scratch it up. I got it for a couple dollars from China too.
@PixlRainbow
@PixlRainbow 6 лет назад
KX36 .... Tempered glass screen protectors meet the MOHs hardness rating that corresponds to glass. You may have purchased some "fake" tempered glass.
@lachywocky
@lachywocky 6 лет назад
I've bought hundreds of tempered glass screen protectors over the years they have all been glass however the quality varies significantly! One I bought was amazingly thin, about a quarter of the thickness of a typical tempered glass screen protector you could curl it round on itself and it wouldn't break however eventually it did break cracked all over the place.
@emi22n
@emi22n 6 лет назад
what oscilloscope was that?
@pnjunction5689
@pnjunction5689 6 лет назад
Shape, design elements and probes resembles Rigol, but I can't find this particular model on their website. Something very new perhaps? I think Dave hid the model number very intentional.
@ruikazane5123
@ruikazane5123 6 лет назад
It keeps going and going and going and going and going...
@1777bond
@1777bond 6 лет назад
i enjoy better short educative videos, love your content though.
@JLSoftware
@JLSoftware 6 лет назад
You lost me at 14 minutes with the scope.
@jam99
@jam99 6 лет назад
I wastn't paying attention but I think Dave was looking at the voltage pump output necessary for the LCD. See his videos on LCDs.
@DonaldSleightholme
@DonaldSleightholme 6 лет назад
nuclear battery to Joule thief or Boost converter circuit? 🤔🤷‍♂️
@zer0b0t
@zer0b0t 6 лет назад
uhmm... no
@DonaldSleightholme
@DonaldSleightholme 6 лет назад
zerpBot I haven’t got one to test but it might be enough to power a l.e.d 😐
@masondaub9201
@masondaub9201 6 лет назад
Adding a boost converter does not increase the power available, it just increases the voltage. Adding a boost converter will only lower the overall power because it's not 100% efficient.
@DonaldSleightholme
@DonaldSleightholme 6 лет назад
Mason Daub it’s worth a try, but might not be very bright? 🤔🤷‍♂️
@masondaub9201
@masondaub9201 6 лет назад
It would be useful if the voltage coming of the nuclear battery is too low for the thing you're trying to power. The monocrystaline solar panel Nurd Rage used produces a high enough voltage. With a solar cell it depends on the wavelength of light that's hitting it and the energy it takes to free the electron from the substrate. I believe this is called the work function. Anyways with this type of solar panel and the energy in each photon of visible light the individual electrons have enough potential energy to make the voltage required to run the calculator. The problem is that there isn't a high enough number of photons, and thus electrons, produced by the decay of the tritium vials to provide enough power to the ASIC, so it can't provide enough current. (current is basically the flow rate of electrons through the wire and power is the flow rate * the potential of each electron. This gets you Watts which is J/s. Increasing the voltage and decreasing the flow rate keeps the power the same. Remember, energy is a conserved quantity)
Далее
Building A Nuclear Powered Gameboy (Lasts 100 Years!)
10:03
EEVblog 1479 - Is Your Calculator WRONG?
17:46
Просмотров 76 тыс.
БЕЛКА РОЖАЕТ? #cat
00:21
Просмотров 845 тыс.
EEVblog #389 - Casio Calculator Investigation
16:15
Просмотров 86 тыс.
Electromagnetic Aircraft Launcher
15:09
Просмотров 1,4 млн
Holey Plugs, Batman! But... what are they for?
20:32
Search for the mythological Klein-ing Frame
20:11
Просмотров 456 тыс.
Making an atomic trampoline
58:01
Просмотров 7 млн
EEVblog #1159 - World's Most Precise Pocket Calculator
17:57
MAGNETRON - Teardown + How It Works - Dangerous!
14:07
Просмотров 906 тыс.
I Found My Calculator Collection!
17:09
Просмотров 26 тыс.