There should be another restock sometime next month. We post banner notifications on the top of the forums as well as ping everybody in our Discord when they drop.
G-Man told me 2-3 weeksDo you guys have any plans as to when that stuff will be available again?
I'm confused, when I searched up these stuff on ebay, I got nothing like what I see on the board. Also, there seems to be less components in that list than on the board. I'm new to this, can someone help me?Here are the pcb files, code, and bill of materials for my Wii Power Management System.
4 buck regulators - 1v, 1.15v, 1.8v, and 3.3v
1 boost regulator - 5v
Battery management IC - seamless play and charge and battery protection
PIC microcontroller
If you're wanting to build your own PMS board, you'll want to download the actual parts BOM from the GitHub repo . Additionally, you won't be able to find these parts on eBay. You'll want to order from somewhere like Digikey or Mouser. Lastly, assembling these boards is no easy feat; a hot air station is required. Unless you have experience soldering QFN parts, you might consider ordering a preassembled and tested board from the store instead.I'm confused, when I searched up these stuff on ebay, I got nothing like what I see on the board. Also, there seems to be less components in that list than on the board. I'm new to this, can someone help me?
I already ordered them and they got delivered.If you're wanting to build your own PMS board, you'll want to download the actual parts BOM from the GitHub repo . Additionally, you won't be able to find these parts on eBay. You'll want to order from somewhere like Digikey or Mouser. Lastly, assembling these boards is no easy feat; a hot air station is required. Unless you have experience soldering QFN parts, you might consider ordering a preassembled and tested board from the store instead.
Ordered what? The parts? The blank boards? The board from the store? I'm confused at what your question is.I already ordered them and they got delivered.
The boards, but I found the BOM (I didn't notice it from before). I just have to order the parts and solder them on. Thank you.Ordered what? The parts? The blank boards? The board from the store? I'm confused at what your question is.
No, you'd have to write a custom firmware to support using a switch instead of a button. As for your second question, that is correct.Can I attatch a sliding potentiomer or an spdt switch to the board to turn it on or off? Also, this might be a stupid question, but on the BOM, will I have to buy a cerain amount of an item where it shows a certain amount of references? for eg. under "Reference" in the first line it shows U1, U2, U4, U5. Will I have to buy 4 of that 1st item?
I'm afraid this is impossible. The PMS handles lithium cell charging, protection, management, and has several voltage regulators to run the portable system. A pi can't do any of that. You can use a pi for faster loading of PS2 games, but that's about itHi Gmanmodz thanks for your design. I am just getting interested in creating my own portable wii, however the power management system board sold on the bitbuilt store is a bit too expensive for me. Recently there was the release of the raspberry pi pico microcontroller and i was wondering if code can be written to the pi pico to achieve similar results to your power management system design? Sorry if this is a dumb question as i am a complete newbie. This is the documentation for the pi pico. Thanks all for the help!
Technically, you can use the Pi as an i2c master to control the BQ and set all of its parameters but its not ideal as the Pi usually saps quite a bit of quiescent current (at least other Pi models, no idea about the newer Pi Pico). Check out the linux drivers below. There is already one written for the BQ25895m and there is a device tree overlay you can use to set the parameters. Indeed, you will still need to write code to handle the enabling of the regulators. This is easily done by sending the enable pin of the regulators to a high logic state.I'm afraid this is impossible. The PMS handles lithium cell charging, protection, management, and has several voltage regulators to run the portable system. A pi can't do any of that. You can use a pi for faster loading of PS2 games, but that's about it
Since I don't think this question has been adequately answered, the pi pico is a microcontroller. The PMS board contains much more hardware than just a microcontroller (which as Stitches mentioned is a battery charging chip, voltages regulators, etc) to power the Wii and charge the batteries. Those parts make up the bulk of the cost of the PMS (and the PCB itself). You /could/ design the system using a pi pico instead of the PIC microcontroller on-board, but it wouldn't allow you to remove the cost of all the other parts on board, and the pico micocontroller will likely cost more than the one that is currently used.Hi Gmanmodz thanks for your design. I am just getting interested in creating my own portable wii, however the power management system board sold on the bitbuilt store is a bit too expensive for me. Recently there was the release of the raspberry pi pico microcontroller and i was wondering if code can be written to the pi pico to achieve similar results to your power management system design? Sorry if this is a dumb question as i am a complete newbie. This is the documentation for the pi pico. Thanks all for the help!