Very broken Macintosh LC.
7:57
2 роки тому
Raspberry Pi Pico DVI Sock!
6:10
2 роки тому
Pico Quick Reset Button
1:21
3 роки тому
ZX81 still awesome after 40 years!
19:10
Raspberry Pi Pico Audio output
6:27
3 роки тому
Schematic for Raspberry Pi Pico VGA
0:53
How good is a $12 signal generator?
4:27
SWTPC Retro DIY sound card.
15:30
3 роки тому
SWTPC 6800. Memory Board Repair
14:43
NVIDIA Tesla K80 Cooling in a Desktop
12:45
КОМЕНТАРІ
@cdoublejj
@cdoublejj 3 дні тому
so it's probably a cruder PSU with less clean power if i had to guess out of my ass, hence the simpler design.
@427Cabriolet
@427Cabriolet 29 днів тому
Imagine dying and this is the only option for calling 911 😭🤣🤣
@olafschermann1592
@olafschermann1592 Місяць тому
Awesome easy
@clementegarcia3277
@clementegarcia3277 Місяць тому
I have installed the original circuit of Boris in my phone Heraldo in Spain and it works fantastic! Great work. It is fantastic to make these old phones work again.
@fazlehadiazmat7g803
@fazlehadiazmat7g803 Місяць тому
amazing demo
@retrofan0119
@retrofan0119 Місяць тому
Hi, thanks for this great video. Can you please share beeb_1080p.uf2 and master_1080p.uf2 files ? I am struuggling to compile them.
@dunk_law
@dunk_law Місяць тому
Does this work with the Pimoroni Pico DV Demo Base?
@chrisst8922
@chrisst8922 Місяць тому
Bit big to put in the pocket.
@angeliran64
@angeliran64 Місяць тому
Is DVI.
@mindbender50
@mindbender50 Місяць тому
how much oxi clean you use in that container?
@lucymorgan499
@lucymorgan499 2 місяці тому
Would this project also work using the Pimoroni Pico DV Demo Board instead of the VGA Demo Board?
@robingrosset6941
@robingrosset6941 2 місяці тому
Yes I think it will work but will require some code changes from VGA output to DVI output. You can find a couple of videos on my channel for how to get HDMI or DVI output from a Pico. They may be helpful.
@lucymorgan499
@lucymorgan499 2 місяці тому
Thank you! @@robingrosset6941
@macedonianlad
@macedonianlad 2 місяці тому
this card trains ai to be a jet engine, and you hear it
@wombatau
@wombatau 2 місяці тому
It’s got a 300w TDP, I’m not sure this will quite cut it.
@pillerb8268
@pillerb8268 2 місяці тому
I know this video is old, but could I use this device to increase the frequency of ac? I see this is used for speakers, but to me it looks like I could use this for said reason
@chrissold5957
@chrissold5957 2 місяці тому
Very underrated channel about raspi-pico.
@remysharp
@remysharp 3 місяці тому
If anyone is coming to this video, I found I kept getting a blank display. But it was actually the wiring that was wrong. Based on the current code in the PicoDVI repo (going by the date of this comment), the wiring is: B+ GP12 B- GP13 CL+ GP14 CL- GP15 R+ GP16 R- GP17 G+ GP18 G- GP19 Assuming you're wiring up as the DIV_Sock is laid out (as per this video).
@Chuncy566
@Chuncy566 3 місяці тому
Could you make all those schematics as large as possible so we can read them on our tele wifi ,i dont know how you would get it to me
@corneavalentin2799
@corneavalentin2799 3 місяці тому
K80 have 2 eCPU on them so need 2 fans or 3 on them ... Also on you video that demo it's used CPU and not GPU ... not normal to get 70-80% cpu usage .
@robingrosset6941
@robingrosset6941 3 місяці тому
Thanks for the comment. In a server, which is where this card normally belongs the card has no fans its cooled by airflow through the server chassis. The main thing is to ensure the card and each GPU is cooled, with this delta fan it is really overkill, these fans at full speed will lift off a desk by themselves. Its a bit too much cooling. I have tried 2 fans together and the issue comes back to where will the hot air exit the card. By design of the cooling fins the hot air flows over one GPU and then over the other there is usually a temperature increase over the 2nd GPU. You see in the video one GPU is 48 degrees C the other 54 degrees C. This is normal for these cards in server environments. There are some examples of overheating cards and normal cards at the NVIDIA forum link google "tesla-k80-overheating 38690" The temperatures in this video are well below the thermal throttling levels. If you look at NVIDIA SMI screen shot in the video you'll see the GPUs are loaded up 50% and 30% But notice GPU RAM usage is 100% on both GPUs.. so they are working hard and at the RAM limit. RAM limits are often the big factor in why folks use these GPUs 10:52 nvidia-smi 100% RAM used. Its normal for CPUs to work hard pushing data to the GPUs, but it does depend on the workload. This test is CPU and GPU intensive because I am running 8 parallel machine learning workloads and an element of this workload is CPU bound because its displaying the OpenAI Gym Space Invaders user interface at high speed. In terms of longevity for this setup I just took a K80 out of a machine after 3 years and its still running fine.
@corneavalentin2799
@corneavalentin2799 3 місяці тому
@@robingrosset6941 got both , M40 single eCPU and k80 dual , full load on image generate they stay under 70 temp with 2 fans like you did on this video
@spinal_cord
@spinal_cord 3 місяці тому
I realise this is a couple of years old now, but is it possible to play 16bit samples using pwm with this code?
@robingrosset6941
@robingrosset6941 3 місяці тому
Yes you can. So inside the interrupt handler there is a call to a function pwm_set_gpio_level (uint gpio, uint16_t level). the second paramter is the level and this is from the WAV_DATA so you can setup the WAV_DATA to be 16 bit integers uint_16_t instead of 8 bit . It should work fine. Do you have a 16 bit sample you want to play as 16 bit or is it that you want to covert the 16 bit sample to 8 bit? The reason for this being 8 bit to begin with was to reduce the memory size needed to store the WAV data and make it more compact. But you can use 16 bit its just your sample memory with twice as big.
@spinal_cord
@spinal_cord 3 місяці тому
​@@robingrosset6941 I tried this sort of thing... int offset = wav_position>>3; uint16_t c = (WAV_DATA[offset + 1] << 8) | WAV_DATA[offset]; int16_t signedSample = (int16_t)c; uint8_t pwmOutput = (uint8_t)((signedSample +32768)); pwm_set_gpio_level(AUDIO_PIN, pwmOutput); wav_position+=2; But it only makes a horrible noise. The PCM data is saved as 16bit lsb first.
@spinal_cord
@spinal_cord 2 місяці тому
After experimenting a bit, it seems impossible to have any better than 12bit pwm for audio, anything higher makes too much noise, it seems it can't do the timing properly.@@robingrosset6941
@user-mi6gx6jr7r
@user-mi6gx6jr7r 3 місяці тому
how to increase font size for "dht logging" application ? can anyone please help?
@user-mi6gx6jr7r
@user-mi6gx6jr7r 3 місяці тому
how can we change font size for "dht logging" example?
@SusanAmberBruce
@SusanAmberBruce 3 місяці тому
Nice video thanks
@superresistant8041
@superresistant8041 4 місяці тому
this is really over-engineered but I'll take the duck tape idea
@4182able
@4182able 4 місяці тому
I have HP Z440 workstation and Quadro K2200, want install Tesla K80 on this machine. plz help me what settings can does run Telsa K80 on my machine
@TheGeneticHouse
@TheGeneticHouse 4 місяці тому
I have a question for you man :-) so I want to hook up a m40 Tesla to my HP computer but I want to set the Tesla on the top of the computer not mount it inside and use one of those brackets you have to take out of the back of the tower so you can insert the card or the Tesla and just have the wires from the power supply the motherboard going out of that hole in the back of the computer now up to the top of the tower where the Tesla GPU is sitting. Okay now on to the real point would it be possible to 3D print a new fan housing for the m40 and k80 etc where you take all of those things off of the casing and expose the chips and whatever you were talking about and reverse the fans so that they are sucking air out of the GPU and blowing it straight up so it would be kind of heating my bedroom not just blowing hot ass air around inside the tower.?? What do you think about this Am I crazy and dumb I'm new and kind of dumb and a little crazy but what do you think about this idea
@paulduffy4661
@paulduffy4661 4 місяці тому
Hi Robin, I have got a K80 and ordered fans for it. I have a Dell Optiplex and can't enable above 4G decoding but I am running Windows 11. I know I will need external power to run this and will have to use a PCIe extension lead as the computer is only compatible with low profile GPUs. I am not worried about how fast things are processed - but it will need to work. Do you think it will be possible to run if I buy this extra kit?
@rapidrabbit7175
@rapidrabbit7175 4 місяці тому
Telephone hobbiest & Ham Radio have something in common. It''s a mental disorder.
@JarppaGuru
@JarppaGuru 4 місяці тому
why cant we just use 2x1ohm paraller 2x1ohm series 3x1ohm series 4x1ohm series 8x1ohm series it will be more in scale than try match these and have more than 1% error for 8k thats 8oms LOL 499ohm 1000ohm 2000ohm 4020ohm 8060 ohm
@nathancusson467
@nathancusson467 4 місяці тому
Hey, I am building a Raspberry Pico Gameboy Emulator, would this solution work for me? I am using Pico-GB from YouMakeTech
@Enterprise-Architect
@Enterprise-Architect 4 місяці тому
Thanks for posting this video... I would like to run LLM (LLama 2 model) on my local machine and looking for a way where a cluster of GPU can be built... I understand that the model would require at least 32GB on a single card to load the entire model in the memory... Could you please confirm how did you create a Arduino circuit board or is it available in the Amazon marketplace and what's the name of it?
@EugeneArchibald-dn6lj
@EugeneArchibald-dn6lj 4 місяці тому
To
@ricki.foxo_owo54
@ricki.foxo_owo54 5 місяців тому
can i have a question did you connect the phone to the telephone network? or does it work through the SIM card somehow?
@robingrosset6941
@robingrosset6941 5 місяців тому
This phone was connected to a VOIP terminal over the internet in my house but it would also work with a telephone network directly designed to use tone dialing. Pulse dialing no longer works in many countries.
@nihasilev
@nihasilev 5 місяців тому
Kendi ev telefonumu yapmak istiyordum ama hangi iletişim protokolu kulandiklari veya nasil çaliştiklari hakkinda bir tek teknik bilgi kırıntısı bulamamiştım. Videonuzla karşilaştiğıma çok sevindim. Teşekkürler..
@AdrianJarvis-zk7ld
@AdrianJarvis-zk7ld 5 місяців тому
surely someone can build one of these into a little box that you just attach to a monitor and keyboard with all the piss about. $40?
@user-dg4dc6vr3r
@user-dg4dc6vr3r 5 місяців тому
Grate Job! Waiting for my P100 delivery , will do same trick except temp sensor
@davideather5979
@davideather5979 5 місяців тому
use an r2-r network fot the dac.
@palzoltan
@palzoltan 5 місяців тому
How can i use? Evrything ok, but the video editor (Vegas, Da Vinchi) not see gpu? What can i do?
@bobweiram6321
@bobweiram6321 6 місяців тому
I actually owned one. It was a gorgeous machine. I don't remember what happened to it.
@kaiyofox
@kaiyofox 6 місяців тому
320mhz is where I found my flash stops working. but I also found providing more voltage, you can go further. (But my "Pico" is builtinto another device) RP2040 processor
@mrdebug6581
@mrdebug6581 6 місяців тому
ZX81 ... my source & forge of *EFFECTIVE* programming, until today ❤
@svenmuhlberg766
@svenmuhlberg766 6 місяців тому
Hi all, be aware that some HDMI cable manufacturer don't use correct color pairs for the signals... for example mine had the clock pair on blue instead brown. So checkout pinout yourself :)
@matiasvaldothebird4043
@matiasvaldothebird4043 6 місяців тому
hi, vsynk and Hsynk resistor?
@XenArena
@XenArena 7 місяців тому
Hi Robin, I have been having trouble trying to install a K80 in Ubuntu, I install the drivers but when I install CUDA it messes up the Graphic Drivers By default it goes to Cuda 11.1 when having 470 as the drivers. I tried downgrading the drivers and having Cuda 10.1 installed. And again, no dice. It gets messed up every time. I should mention that I am trying to install it in a HPE DL380 G9 with Ubuntu 22.04.3. What is your exeprience with POP OS what version would have an easy driver install and Cuda? Would appreciate a feedback. Best regards,
@erickfranca9694
@erickfranca9694 5 місяців тому
Hi, did you find any solution for install a k80 in Ubuntu ?
@stevejjd
@stevejjd 7 місяців тому
How do you find the x drivers? I hears they are slower than the drives normally downloaded from the nvidia site. I want to make a gou render server but worried the x nvidia drivers aren’t performant.
@DanburyDK
@DanburyDK 7 місяців тому
Area Code 203 - this ☎️ telephone is from Connecticut - where I live 😀
@jasenalexmiller2149
@jasenalexmiller2149 7 місяців тому
Would like for it to work, without hearing the dial tone!
@benjaminrittgers8509
@benjaminrittgers8509 7 місяців тому
I built the device, but I don’t know where to connect each wire. Can you help and explain which terminals on the pulse to tone generator connect to which screws inside the phone? The schematic on the pdf is confusing.
@texmex3343
@texmex3343 7 місяців тому
BBC model B and Commodore C64 the 2 best computer 8 bits 🙂
@bobmcbob4399
@bobmcbob4399 7 місяців тому
Exile - you should try that. This is a metroidvania, well before Iga introduced the genre.
@hasif499
@hasif499 7 місяців тому
I think K80 is only supported by newer motherboards (with 4g decoding). On my Intel i5-7500 B250M-D3H it showed up in DevMan with errors [ERROR: This device cannot find enough free resources that it can use (Code 12)] but could not get it to work which is due to mobo not allocating enough resources to memory, also Nvidia Control Panel did not start at all.