Ben Heck’s Teensy Pinball Portable Part 1

  Рет қаралды 116,007

element14 presents

element14 presents

Күн бұрын

Пікірлер: 156
@TheYogurtdonkey
@TheYogurtdonkey 9 жыл бұрын
I love the commentated time-lapse.
@MrTuffarts
@MrTuffarts 9 жыл бұрын
If you are going to have a beefy audio track on the opening credits, can you please balance the audio volume to match your own audio. It plays unbelievably loud. Rise above the YOUTube hype, you are much humbler than that, it is one of your best features.
@Xzorbox
@Xzorbox 9 жыл бұрын
I loved the "explaining detail" in this episode.
@Good0Music0for0you
@Good0Music0for0you 9 жыл бұрын
Very nice detailed method , keep up the good work and keep those details comming , you fans from London .
@1stage
@1stage 9 жыл бұрын
This project is AWESOME! Thanks Ben!
@Jamesah1975
@Jamesah1975 9 жыл бұрын
Is it just me that enjoys watching Ben's video's but literally has NO IDEA what he's talking about when he goes all technical?! lol
@furrymessiah
@furrymessiah 9 жыл бұрын
It's not just you.
@thesamuelbutler
@thesamuelbutler 9 жыл бұрын
Jim Nope. I try though.
@dpGoose
@dpGoose 7 жыл бұрын
I reckon you would enjoy techmoan and 8 bit guy too.
@hoppend
@hoppend 9 жыл бұрын
Very nice! Looking forward to the next episode!
@shagg3d
@shagg3d 9 жыл бұрын
I am loving this, has been a project for years I've wanted to do replicate and convert the larger machines (Williams gottlieb) into a portable home tabletop. May still have a go when my 3d printer is built. So thanks Ben nice to see
@ByronBedenbaugh
@ByronBedenbaugh 8 жыл бұрын
@axs203
@axs203 9 жыл бұрын
This is a good video....could just about follow it with the bits n registers!
@im.a.nickel
@im.a.nickel 9 жыл бұрын
The Ben Heck Show What you were explaining about cabTemp and cabNet is called atomicity. This is used a lot when dealing with file systems or multi-threading environments. Also being a programmer I'm loving the amount of coding in this with hardware!
@DogRox
@DogRox 9 жыл бұрын
Wow! There was a lot of info crammed in that video! :-) good job dude!
@RealCousinOkri
@RealCousinOkri 7 жыл бұрын
I had to come back to this video to figure out how exactly is this score display working. So brilliant it just blew my mind.
@rm2kdev
@rm2kdev 9 жыл бұрын
Oh god, back to the parts again >.> lets hope we get part 2 next week and not next month >.>
@jakeleith2000
@jakeleith2000 9 жыл бұрын
he's a pinball wizard
@element14presents
@element14presents 9 жыл бұрын
The Leithal Gamer there has to be a twist..
@jakeleith2000
@jakeleith2000 9 жыл бұрын
The Ben Heck Show A pinball wizard's got such a supple wrist
@Freako
@Freako 9 жыл бұрын
The Leithal Gamer How do you think he does it?
@Freako
@Freako 9 жыл бұрын
sonicase What makes him so good?
@sw1tched
@sw1tched 9 жыл бұрын
"Too much input stefanie" .... unlike Number 5 .... MY HEAD exploded with the information in this video!!!!!
@michaelcullen7932
@michaelcullen7932 9 жыл бұрын
Loved to see all the code!!
@matthew-sq4kz
@matthew-sq4kz 9 жыл бұрын
Well done. You are amazing!
@minor0confusion
@minor0confusion 9 жыл бұрын
high speed cam shot of the screen would be amazing!!
@fab1604
@fab1604 9 жыл бұрын
Man, the new intro is so cool!
@TheeBuddylee
@TheeBuddylee 6 жыл бұрын
Love episodes with more coding exploring like this one
@jojoposter
@jojoposter 9 жыл бұрын
Hmm, this alphawire ad was actually not so bad... nice ! And nice intro :) Project looks interesting, will follow that *thumsup*
@element14presents
@element14presents 9 жыл бұрын
Niklas Mertens Thanks!
@Bladedragonlord
@Bladedragonlord 9 жыл бұрын
Crikey you have to remember so much info... WOW! :D (I used to program so I get some of what you are talking about, but still Wow, so much info!)
@JackTheDeergal
@JackTheDeergal 9 жыл бұрын
What would be really neat to make would be a pocket-sized synth/keyboard. You could use a small computer (arduino,raspberry pi,Etc) and install some kind of music writing software, they have a couple of knobs to adjust a few things (pitch bending, LFO rate, low pass filter,Etc) it just sounds like a cool project. Likeliness of you seeing this is incredibly slim, but I thought it was worth bringing up, have an splendid day :)
@rubysharp326
@rubysharp326 9 жыл бұрын
I really enjoy watching and listening to your words what come out your mouth, I just wish I understand what the hell your talking about.
@doffer987
@doffer987 9 жыл бұрын
Great project!!!
@supersat
@supersat 9 жыл бұрын
Gotta love the explicit "in two weeks!" comment, especially after the Dreamcast outcries ;)
@orinokonx01
@orinokonx01 9 жыл бұрын
Welllll done!! Really enjoy these videos! Looking forward to the next part :) :)
@stevobox8726
@stevobox8726 9 жыл бұрын
Wow, you code wayyy more efficient than I do! And yeah at 96MHz that tniyduino is properly fast
@Quaker763
@Quaker763 9 жыл бұрын
Ben! You should have totally used cstdint to specify fixed width values, like uint16_t. It makes everything so much easier to read, especially on a uC like the teensy.
@frollard
@frollard 9 жыл бұрын
Worth noting: In teensyduino, the author wrote functions called 'digitalwritefast' and 'digitalreadfast' that take only 1 cpu cycle to complete...much faster than default :D (without needing to resort to port addressing)
@Robonza
@Robonza 9 жыл бұрын
frollard How about using the SPI port and have half that stuff happen with no processing at all haha.
@frollard
@frollard 9 жыл бұрын
Robonza Definitely a trade between novice usability and efficiency...I just mentioned that one because ports and bitwise operations are a bit heavy for the beginner and if the other goal is speed then it's already been taken care of :)
@gauge6513
@gauge6513 Жыл бұрын
Love this guy. He explains code like it makes sense. Its rules not logic which is why we arent aliens yet. haha
@CarrotsNotCake
@CarrotsNotCake Жыл бұрын
He's really great.
@FatLingon
@FatLingon 9 жыл бұрын
Ben, you are an animator, but you choose a display that really can't be that animated. I would have loved for this to be a 3 parter, where you improve on ordinary pinball-machines and use a modern LCD/LED display and make a few short animations in full RGB color.
@Chopy61
@Chopy61 7 жыл бұрын
FatLingon the goal here was to make a small and simple portable pinball machine.
@VacFink
@VacFink 9 жыл бұрын
Any listing is a great and can be improved with feedback over time. As a newb, part numbers and links to items I can buy on E14 are great. Since so some of this is from scrounged parts, substitutions or specs for similar parts would be helpful. I would think over time makers who give it a try will share their own links and sources for scrounged parts or alternative parts as well and it can grow organically. That's my take from someone just stepping into the pool, others who are already knee or hip deep probably don't need as much or have other preferences. I hope that helps.
@element14presents
@element14presents 9 жыл бұрын
VacFink Thanks for the feedback :)
@smooooth_
@smooooth_ 9 жыл бұрын
Ben looks like a mix between Gaben, Bill Gates and Conan O'brien
@ojtheaviator1795
@ojtheaviator1795 9 жыл бұрын
Yes!
@kikicat123
@kikicat123 7 жыл бұрын
he doesn't just look like it, he IS it
@DeRaafMedia
@DeRaafMedia 9 жыл бұрын
The Gods will be displeased. Very displeased, ...... maybe end of world displeased. You don't shrink pinball machines, you make them bigger.
@TommieTF
@TommieTF 9 жыл бұрын
Volgens mij heb je teveel gedronken
@DeRaafMedia
@DeRaafMedia 9 жыл бұрын
Tommie Terhoeve The Gods forbid that kind of frivolous activity.
@TommieTF
@TommieTF 9 жыл бұрын
DeRaafMedia ehm ok dan... Je weet dat dit een tech channel is je :)?
@DeRaafMedia
@DeRaafMedia 9 жыл бұрын
Tommie Terhoeve The Gods forbid that kind of frivolous activity. 
@Out_of_Czech
@Out_of_Czech 9 жыл бұрын
I wish I could do any of this stuff :(
@planetWayne
@planetWayne 9 жыл бұрын
The Ben Heck Show I might be missing a trick - but on the score 'number' to string code, could you not just use cstr to convert the actual number to an ascii string. Then all you would need is a loop through and replace the 'val' of each -48 to get the ascii values correct. Would read a lot easier I think. Also as a quick thing, don't forget to right justify your score :) (I don't know about Arduino or Teensy code but in the old days of basic you could set the length of string you wanted to return and justify your number in it) - just my 2p worth :) Cheers Wayne.
@EmilFr
@EmilFr 9 жыл бұрын
Instead of using the read, modify, write on the pin registers, can't you use bitbanding? Teensy 3.1 is an ARM Cortex-M right? I'm not a 100% sure, it might be manufacturer dependent or something, but that would allow much faster access to individual pins as every bit in a pin register is aligned and can be accessed individually.
@MaeveFirstborn
@MaeveFirstborn 9 жыл бұрын
I know that there is a low chance of you doing this. But I can't find a lot of videos explaining how to add buttons or hopefully a joystick to a teensy. After this, think you could make a video on adding a joystick and button to teensy?
@DarkMetalSkies
@DarkMetalSkies 9 жыл бұрын
love you ben
@element14presents
@element14presents 9 жыл бұрын
Frostclaw20
@DarkMetalSkies
@DarkMetalSkies 9 жыл бұрын
I am studying Electrical Engineering to be like you.
@element14presents
@element14presents 9 жыл бұрын
Frostclaw20 Excellent, if it helps, the element14 community's a good place to learn from, too.
@DarkMetalSkies
@DarkMetalSkies 9 жыл бұрын
I will register then
@VacFink
@VacFink 9 жыл бұрын
Hoping you share plans for this on Element 14 with parts list. I'd love to build my own as my first homebrew!
@element14presents
@element14presents 9 жыл бұрын
VacFink We've been wondering how best to present component lists and such on the community, if you have any ideas we'd like to hear them.
@VitekSTZero
@VitekSTZero 9 жыл бұрын
Nice intro BTW! :)
@element14presents
@element14presents 9 жыл бұрын
***** Thanks :)
@cooliofoolio
@cooliofoolio 9 жыл бұрын
MOAR DREAMCAST PORTABLE!!
@element14presents
@element14presents 9 жыл бұрын
UNKNOWNGAM3r D: It's made already! (but thanks :)
@supersat
@supersat 9 жыл бұрын
The Ben Heck Show needs moar WiFis (for games that supported the broadband adapter)
@MichielHaisma
@MichielHaisma 9 жыл бұрын
Cool!
@bzhmaddog
@bzhmaddog 9 жыл бұрын
What would be nice is to have more detailled schematics available (on Github for example). What diode did you use for the Solenoid driver. 1N4001 ?
@FiloTECH
@FiloTECH 9 жыл бұрын
Finally ;)
@YommyRawr
@YommyRawr 9 жыл бұрын
instead of the score divider, just use a bitmask and bitshift ?
@Jensen567
@Jensen567 9 жыл бұрын
Cannot recommend the Teensy enough. The price/performance is so far above anything else I have seen in the MCU world. PJRC also has some of the best support for software on their forums.
@davthomas223
@davthomas223 9 жыл бұрын
can you do a guide on RetroPie? I'm having trouble with MAME compatibility
@leno5682
@leno5682 9 жыл бұрын
Hey Ben I've have a pair of broken heads laying around, well they not broken I guess. They still work its just the right plastic thing broke off. I was wondering if you could fix it or even make it better some how. Please send me a message if you can.
@yemmohater2796
@yemmohater2796 9 жыл бұрын
I have an idea for a project. A customizable and versatile Raspberry Pi Game kit that can be used by noobs and has no soldering involved.
@Skyman2596
@Skyman2596 9 жыл бұрын
I'm very interested in making a similar project but have some fundamental questions. How do you turn the closing of a switch (say a stationary target on the play-field being hit by the pinball) into a digital signal that can be used to increase the score? Also how would the same concept work but this time the ball would hit a switch which activates a solenoid (say a kicker)? Thanks!
@ojtheaviator1795
@ojtheaviator1795 9 жыл бұрын
Would 120fps slo mo capture the individual numbers
@JadarDev
@JadarDev 9 жыл бұрын
the audio levels are all over the place in this episode..
@antoinecoppens6249
@antoinecoppens6249 9 жыл бұрын
What is the IDE you are using? I like the fact that you can expand and collapse functions. It makes the code better organized.
@element14presents
@element14presents 9 жыл бұрын
Antoine Coppens It's just a text editor, Notepad++
@antoinecoppens6249
@antoinecoppens6249 9 жыл бұрын
Ok thanks Ben (or Max) !
@Shoopity
@Shoopity 9 жыл бұрын
Some of this information would've helped while I was deciphering the code for making a Virtual Pinball table of America's Most Haunted. :-P
@jerviservi
@jerviservi 9 жыл бұрын
On the Mosfet, Ben called the diode a 'Fly-back' however I have learnt it as a 'Rerversed Bios'. If this just language diffrence (I am from the UK) or have I learnt it wrong?
@EngineeringVignettes
@EngineeringVignettes 9 жыл бұрын
Reversed bias.
@bsvenss2
@bsvenss2 9 жыл бұрын
Thomas Jarvis _A flyback diode (sometimes called a snubber diode, freewheeling diode, suppressor diode, suppression diode, clamp diode or catch diode) is a diode used to eliminate flyback, which is the sudden voltage spike seen across an inductive load when its supply voltage is suddenly reduced or removed._
@FalbertForester
@FalbertForester 9 жыл бұрын
Thomas Jarvis No, you learned it right. The reversed biased diode is being used in a fly-back configuration, across the coil in the relay. This is one of the many uses of a reverse-biased diode - flyback voltage spike suppression across a DC-driven inductor. When the MOSFET switches from on to off, the magnetic field in the coil collapses, but while it does, it can generate a substantial reversed voltage spike across the coil. The diode provides a safe way to drain the energy within the coil, thus preventing you from "flying back across the room" from touching a coil that is supposedly "off". Here, it's primarily to protect the MOSFET from damage, but in higher-energy circuits, it can prevent arc events.
@jerviservi
@jerviservi 9 жыл бұрын
Falbert Forester Ah, okay. Thanks. That makes sense now. I have my electronics exam this week and there is always a question on Mosfets or BJTs with an electromagnetic thing, so that very useful.
@harryhttu4693
@harryhttu4693 6 жыл бұрын
Is there a way to connect a vibration sensor to the segment display
@Meep3692
@Meep3692 9 жыл бұрын
At 5:58 you said USB bus. Suggesting you don't want to power the LEDs off the universal serial bus bus.
@element14presents
@element14presents 9 жыл бұрын
Meep Walrus Well, y'know, with a few resistors...
@AmericanToxin
@AmericanToxin 9 жыл бұрын
Thumbs up. Just a quick question would you do a N64 portable?
@element14presents
@element14presents 9 жыл бұрын
Trevor Woodworth Ben did, some time ago, it was a pain to do: www.benheck.com/n64-portable/
@ZuiGe
@ZuiGe 9 жыл бұрын
this is a really cool one! you need to work on your code though, ben. :)
@brendan9734
@brendan9734 7 жыл бұрын
How does he not run into data bottlenecking issues with so few pins? I would put everything on its own port (excluding group operations) but I guess that would make it more complicated.
@brendan9734
@brendan9734 7 жыл бұрын
I guess he has it set up to only run one function at a time.
@DanielMonteiroNit
@DanielMonteiroNit 7 жыл бұрын
for composing the score string, wouldn't snprintf be better? is it available?
@helloworld6569
@helloworld6569 9 жыл бұрын
I haven't finished watching the video yet, but I've gotten to the start of the code portion. Why are you storing the numbers as ASCII values and then subtracting 48 instead of just storing them as integer values to start with?
@johanrg70
@johanrg70 9 жыл бұрын
Hello World! The compiler will optimize away the subtraction so it's just more convenient to let it do the math like that and makes it easier to modify for the programmer.
@sampleexamplemusic
@sampleexamplemusic 9 жыл бұрын
holy hell that title sequence was loud.
@aidan00ah
@aidan00ah 9 жыл бұрын
Oh cool :3
@JoxArcade
@JoxArcade 9 жыл бұрын
Hello I would like to see a video in which you convert a single android tablet into a tablet gamepad as JXD and please send a mail with how make this....
@olivier2553
@olivier2553 9 жыл бұрын
Ben, I enjoy your show very much - I think I just finished watching all the past episodes - but the parts where you teach programming are almost impossible to follow: there is not always a good synchronization between what you say and what is shown, there are too many lines of the program that are highlighted at the same time, and by the time the viewer has found what line you are describing, there are some comments that are added at the bottom of the screen... You are going way too fast! And I am a programmer. While the electronic part is much easier to understand, even for me with no prior knowledge of electronic (or a level way more limited than my computer knowledge).
@bland9876
@bland9876 9 жыл бұрын
a prostitute themed pinball machine should have the Flying Spaghetti Monster in the center of the decal
@CrashDK
@CrashDK 7 жыл бұрын
Hallo Ben. What is your Education?
@ryanamberger
@ryanamberger 9 жыл бұрын
When you said portable pinball I was looking forward to a laptop pinball machine that also plays Xbox 360 and Vectrex games...What gives Ben?!?
@Quaker763
@Quaker763 9 жыл бұрын
Oh btw what chip was on the audio shield??
@Craft4Cube
@Craft4Cube 9 жыл бұрын
What is your background music, in the vid?
@Kick299
@Kick299 9 жыл бұрын
Where'd you go to school?
@XxShOoTnDiExX
@XxShOoTnDiExX 9 жыл бұрын
Yaaaaas
@MegaEVOGamer
@MegaEVOGamer 9 жыл бұрын
Can you do a ps4 controller charger for 4 controllers and more porable
@probastian
@probastian 9 жыл бұрын
Your buildings are so amazing, and i want to build them, but im only 12 Years old, and cant build your Projects... Is there any Solution (except asking Elders or Relatives for Help), that i can build your Projects? P.S. Mostly Problems are 3D Printing, the lovely Money. Time is not the Problem
@probastian
@probastian 9 жыл бұрын
Oh forgot to mention you! The Ben Heck Show 😉
@odindj_slayer8729
@odindj_slayer8729 9 жыл бұрын
at 7:47 Poll I/O spells Pollio,lol
@joelingtonmcjoule5603
@joelingtonmcjoule5603 9 жыл бұрын
who ever thought light blue writing on a whiteboard was a good idea?
@jaredcoon
@jaredcoon 9 жыл бұрын
You should build a portable ps2. Now that would be amazing!! Or a raspberry pi controlled hand built 3d printer:) ( is that even possible if so you can do it) thanks!
@systemmaster128
@systemmaster128 9 жыл бұрын
22:30 This is not true! bitRead, bitWrite, bitClear and bitSet are macros in wiring.h (Teensyduino) or in Arduino.h (Arduino), they are bitwise operations, that run just as fast as your functions. For digitalWrite and digitalRead your argument is only true if you run these commands with dynamic parameters otherwise they will be single-cycle instructions.
@mrlazda
@mrlazda 9 жыл бұрын
systemmaster128 There is little correction, writing constant to SFR on ARM or Atmel is not single-cycle instructions (it is possible to be single-cycle instruction only if you have prepared values in general-purpose, which is rarely case) changing one bit on SFR usually take 3 instructions. bitWrite is macro but it use conditional assignment to select which macro it will use (which can be determined during compilation for static parameter if you use some good compiler, GCC dont do that) digitalWrite and digitalRead are never single-cycle instructions (they never cant be even compiled to 3 instructions), and there is no difference if you use dynamic parameters or static parameter.
@Bloodthirsty9000
@Bloodthirsty9000 9 жыл бұрын
Hey Ben I was wondering how do we contact u about building us something
@element14presents
@element14presents 9 жыл бұрын
Bloodthirsty9000 Thanks for asking, you need to use the 'suggest a build form' on the element14 Community, here's the link: ow.ly/NBYFa
@macjaybirdpaintballer4848
@macjaybirdpaintballer4848 9 жыл бұрын
i'm building the minecraft pinnball
@RickyLi
@RickyLi 9 жыл бұрын
Is that an evil rabbit I see?
@element14presents
@element14presents 9 жыл бұрын
Ricky Li With sharp pointy teeth?
@ebnicolaou
@ebnicolaou 9 жыл бұрын
+The Ben Heck Show can i earn this pinball?
@HazardOfExistance
@HazardOfExistance 9 жыл бұрын
His divider was set to 10M instead of 1M like he said it was.
@letsgocamping88
@letsgocamping88 9 жыл бұрын
What IDE are you using? I wish the arduino IDE would collapse functions like that.
@highac3s
@highac3s 9 жыл бұрын
It's notepad++ (not an ide just a text editor)
@kcajBr
@kcajBr 9 жыл бұрын
Benjamin Harvey it looks like notepad++.
@element14presents
@element14presents 9 жыл бұрын
Benjamin Harvey At the end of the day it's just text files, so you can use whatever you like. The IDE just packs in avr-gcc to make things simpler.
@BGBTech
@BGBTech 9 жыл бұрын
The Ben Heck Show yeah. personally I prefer Notepad2, which is used more like the original Notepad (IOW: you open a bunch of instances in parallel, with one instance for each file).
@letsgocamping88
@letsgocamping88 9 жыл бұрын
I clocked it was notepad++ when I saw the full screen ;)
@LPBenob
@LPBenob 9 жыл бұрын
Second from Germany
@MetroidChild
@MetroidChild 9 жыл бұрын
is this 24 or 30 fps? this is really weird for my brain
@element14presents
@element14presents 9 жыл бұрын
***** about 24fps
@supersat
@supersat 9 жыл бұрын
The Ben Heck Show I noticed this too, but this is the first episode in a while that I've watched on my laptop (as opposed to my phone). Maybe eevblog's 60 fps is screwing with me...
@magnuswootton7368
@magnuswootton7368 6 жыл бұрын
i hate the I/O restriction on these robot controller boards!!!!
@Jacefax
@Jacefax 9 жыл бұрын
That intro was way too long and way too loud. Looked cool though.
@letsgocamping88
@letsgocamping88 9 жыл бұрын
Looks like notepad++
@victordiaz1465
@victordiaz1465 9 жыл бұрын
Do a ps4 portable pls
@kielerkarl
@kielerkarl 9 жыл бұрын
2 Weeks......Noooooooooooooooooooooooooooooooooooooooooo
@element14presents
@element14presents 9 жыл бұрын
kielerkarl www.nooooooooooooooo.com/
@kielerkarl
@kielerkarl 9 жыл бұрын
:) like it :)
@blvm
@blvm 9 жыл бұрын
The Ben Heck Show Hahahahaha
@phill80
@phill80 9 жыл бұрын
29 minutes of utter gobbledygook.
@jackj3596
@jackj3596 9 жыл бұрын
First
@Colt159
@Colt159 9 жыл бұрын
11th
@Quin99
@Quin99 9 жыл бұрын
first
@eoinchedzey3154
@eoinchedzey3154 9 жыл бұрын
First 😏
@cgcgcg
@cgcgcg 9 жыл бұрын
Fools, normalize your intro, or gonna get a bill for a pair of speakers..
Ben Heck’s Teensy Pinball Portable Part 2
29:35
element14 presents
Рет қаралды 98 М.
Ben Heck’s Game Brains Part 2
18:26
element14 presents
Рет қаралды 60 М.
ДЕНЬ УЧИТЕЛЯ В ШКОЛЕ
01:00
SIDELNIKOVVV
Рет қаралды 3,2 МЛН
Life hack 😂 Watermelon magic box! #shorts by Leisi Crazy
00:17
Leisi Crazy
Рет қаралды 37 МЛН
Как мы играем в игры 😂
00:20
МЯТНАЯ ФАНТА
Рет қаралды 3,3 МЛН
Ben Heck's FPGA LCD Driver Hack
25:15
element14 presents
Рет қаралды 223 М.
Ben Heck's Game Brains Part 1
17:20
element14 presents
Рет қаралды 79 М.
Ben Heck's Essentials Series 1 - Connectors
25:51
element14 presents
Рет қаралды 141 М.
Ben Heck’s Oscilloscope Watch
23:43
element14 presents
Рет қаралды 146 М.
Why build an entire computer on breadboards?
28:43
Ben Eater
Рет қаралды 3,1 МЛН
Radio Antenna Fundamentals   Part 1 1947
26:09
Gerry Trenwith
Рет қаралды 399 М.
Ben Heck’s Raspberry Pi Media Center
25:09
element14 presents
Рет қаралды 371 М.
Ben Heck Says Which Brain is Best for Your Project
19:31
element14 presents
Рет қаралды 115 М.
The Original Atari Portable Gaming Mod Is Back!
15:48
element14 presents
Рет қаралды 185 М.
ДЕНЬ УЧИТЕЛЯ В ШКОЛЕ
01:00
SIDELNIKOVVV
Рет қаралды 3,2 МЛН