Skip to main content

Lenovo YOGA 900 in-depth hardware review

"In-depth" meaning that you get to see some circuits here. But we'll get to that, let's put some background first. Disclaimer: I'm not affiliated in any way with any trademark holders mentioned nor am I any kind of hardware engineer.

A few months ago I bought this laptop for mainly three reasons: cutting-edge hardware for ultraportables (including 512 GiB SSD, and especially 16 GiB RAM, something that leading competitors have yet to start including — RAM is not upgradable so it's important), normal keyboard without counter-intuitive keys (very rare among ultraportables), and super-cool wristwatch hinge, used also for ventilation which means that nothing usually blows hot air to your laps). And all that for price similar to the price of competitor laptops with the same chipset/cpu (keep in mind that even slower large SSDs are still quite expensive). I've found out that it's quite quiet for something having fans at all and quite powerful. I would very much prefer something with two SSDs so that I can RAID-1 them, but that's not very common and wasn't critical for me.

 Linux works on it surprisingly good (minus some software not supporting HiDPI yet), but
you'll have to dual-boot to update bios firmware. I usually just install Win10 to my swap partition, do what I need, wipe it, and use as a swap again.

Anyway, externals and software are reviewed on many other resources so I'll just stop here. Yesterday, I was working late and, when getting up from my desk, spilled about 100 mL of Corona Extra with lime (say what you want, I like it) on the keyboard. After the usual turning over and wiping to make sure nothing gets to deep inside (and finishing the bottle), I started disassembling to wipe and clean everything inside, assess damage, and clean the keyboard separately. It's not the first laptop I had repair after spillage (the first of my own though) so I new that first aid must come prompt. If you're already bored, summary is that I'll probably need a new keyboard and a new DC-in jack cable.  For everyone else, some photos follow.



This is what you see after you unscrew ten T-5 screws and struggle with hooks a little. Notice that motherboard does not carry any external ports and both I/O boards can be replaced separately (damage from electric discharge or some such will hopefully be limited to them, keep repair costs relatively low).

DC-in has a separate cable which I prefer in my laptops, because they tend to break from time to time and I both don't know how to and don't want to solder-in any parts into expensive circuit boards. In this particular case, however, there a minor catch. Unlike other ports, to remove that cable you have to pull upward, not away. Because I haven't studied the maintenance manual first and didn't look to close as it was an emergency situation I pulled in the wrong direction a little to hard and destroyed the connector. Now I'll have to wait while a replacement arrives.

Battery is generally the first thing you have to remove when dealing with spills. This one can be remove relatively easily but cable is connected to the motherboard from the bottom making it slightly uncomfortable to remove or replace.



I didn't stop to make photos while I was cleaning, and won't go further until I have a replacement keyboard (at which point I might post some additional photos here). But you can see part of the keyboard and note that it has some tape on it and is connected by a lot of screws. The tape, unfortunately, doesn't make it even slightly spill resistant even though it's a very simple an very important addition (some competitors do that, I'm not pointing to Acer R13 R7). It's not like there's any air circulation through the keyboard anyway.

Pretty standard M.2 for SSD and PCI-e for wireless card. Overall, my impression is very positive, some things might be not ideal but it's a solid piece of hardware that will probably serve me well for years... Once I fix it this time and stop spilling stuff on it.

Another thing you might've noticed is unused ports on the motherboard:


JP7 looks like a fan port (I'm totally guessing, could be anything). JP15 and JP10 have nothing soldered into them but I'm very curious whether I can connect USB or PCIe or at least GPIO or something to any of them. If only there were any test for that or some document. Maintenance manual doesn't say anything. Maybe I can find some spec sheet if I use info printed on motherboard?


Or maybe I should just go and ask Lenovo. Internal USB port would be very appreciated even though it's too thin for almost any additional device to fit inside (I'd try to put a hardware RNG circuit there, or something).

By the way, keyboard is still acting up even after I cleaned it thoroughly with alcohol and let it dry. So I'm going to replace it and get myself a new wireless keyboard, luckily, this laptop can stand on desk in a tent mode freeing space for an external one. I decided that it's time to try some mechanical one, so I might compose a review of that as well in a couple months.

Popular posts from this blog

「この番組は、ご覧のスポンサーの提供でお送りします」Inference Labs

It's official, I have corporate sponsors now (which will hopefully be closer to strategic partnership soon, at least I'd like that). Thanks for the steaks and wine and equipment and all other resources for my distributed hacker team (I'm hoping for a cool demo for ETHOnline hackathon), and local Web3 meatup group I facilitate in Tbilisi (steaks and gas money for everyone participating in the ecosystem), and my Web3 community support army in training. A large bag of kudos for our general sponsor: Inference Labs! If anybody needs help onboarding into the decentralised world, reach me privately and we'll help you navigating the options, we have the expenses covered and good people for this (better points of contact are being established, things are being worked on, stay tuned). I should probably tell a few words about what we actually do at Inference Labs but things change so often I hope we're still bringing decentralized AI to the Web3 world when you read this (maybe...

New horizons

I originally started this blog with ideas of reviewing devices and services and hoping that eventually if it gets popular enough somebody starts sending me stuff to review. A lot has changed since, I stopped obsessing that much about new gadgets and got into vintage electronics, many of things that were new and interesting a few years ago are a commodity now. I thought about reviewing the phone I finally got to refreshing last year (S23 Ultra is ok upgrade for Note 8, I'm glad that new ultras will finally have flat screen again, I might upgrade next year or so just for that) but I don't really feel like it or think it would mean much for the readers. Most of my vintage electronics is at home where I haven't been for a couple years and it's not something I can currently do something about, I touched a soldering iron like once or twice this year. I might post something work-related once I get the hang of what I'm actually doing there and have some rough ideas wen dece...

Using virtualenv for more than Python projects

Sorry, it's not a complete instruction, just a thought. It occurred to me (some time ago) that Python's virtualenv is, essentially, a simplified version of system "prefix", it has bin, lib, include, and can have more stuff when needed. If you're willing to experiment (you'll probably have to set a few additional environment variables and/or build flags but that's no big deal), you can install various other tools there up until you have a complete system with its own compiler and complete set of libraries although it's much simpler to keep using system compiler and libraries only complimenting them when needed. Granted, prefixes are nothing new, people were using /opt (and their home directory) this way since the beginning of time. But with little help of virtualenv-wrapper or pyenv you can easily switch between them and isolate environments better. Binaries and stuff installed in virtualenv would override system defaults but only when venv is activat...