5 reasons every Raspberry Pi enthusiast should own a 3D printer


Single Board Computers (SBCs) like the Raspberry Pi and 3D printing technology go together like peanut butter and jelly, and the cost of entry into the world of 3D printers is lower than ever. You can buy a basic 3D printer for as much as a high-end Raspberry Pi, but if you haven’t yet made this particular connection, there are more than a few good reasons to take the 3D printer plunge.

Infinite variety is a click away

There are numerous commercially-made Raspberry Pi cases you can buy, and they aren’t that expensive most of the time. Injection-molded cases certainly look nice and professional, and if you just have one Raspberry Pi and are going to use it as a standard computer, there’s nothing wrong with throwing one of the official cases in your cart before checking out.

Likewise, if you want a transparent case so you can admire the circuit board and components without exposing your Pi to the elements, an acrylic case is the best way to do it, even if they are relatively pricey. If you’re going to have multiple Pis (it happens so fast) or if you have different specific projects you want to use your SBC for, a 3D printer is the way to go. There are thousands of custom cases for the whole Raspberry Pi family you can print, and, of course, if you have the time and skills, you can modify them or create your own from scratch.

Build hardware that simply doesn’t exist in stores

A customer base of one

shane-mason-raspberry-pi-5-90s-cable-tv-simulator-3 Credit: Shane Mason

While the Raspberry Pi was originally created to make learning to code cheaper and more accessible, it’s now also become inextricably linked to maker culture. There are people making all sorts of very cool gadgets using a Raspberry Pi as the core component behind it all.

For example, that little box you see above on that TV is the “90s Cable Simulator” created by Shane Mason. A faux cable box that recreates the experience of cable TV from the 90s, as the name literally describes.

Of course, it doesn’t stop there. Numerous projects require custom mounts and parts to make the final device work correctly. Whether you’re building a custom arcade machine or a robot, you’ll probably need bits and pieces that you can’t buy off the shelf to make it all work. 3D printers were made for this situation.

Of course, you can always just send your file off to a print farm and have someone else print them for you, but if you’re doing custom projects, this takes away one of the major advantages of 3D printing—rapid prototyping. The ability to rapidly print and iterate your designs will make any project run more smoothly, and it’s worth the price of entry.

ELEGOO Centauri 2 Combo.

Build Volume

256 × 256 × 256 mm

Connectivity

Wi-Fi

The ELEGOO Centauri Carbon 2 builds on the solid foundation of its predecessor and adds an affordable, effective multicolor system to the mix.


Make your Raspberry Pi setups look professional

Doesn’t look like it was made in a cave from scraps

A Raspberry Pi 4 music server. Credit: Nick Lewis/How-To Geek

3D printing certainly isn’t the only way to make things. You can use anything from wood to LEGO bricks to craft the accessories you need for your projects. However, if you want your Pi project to look professional or factory-made, 3D printing is the easiest path. Modern 3D printers can produce objects that don’t look miles away from the quality of injection-molded items, and if you’re willing to put in a little effort with the right finishing methods, you can get something that looks better than mass-produced plastic.

Add to this the latest multi-material technology, advanced printing techniques, and interesting filament options that include carbon fiber, wood, and metal-infused filament, and the sky really is the limit. Or, rather, your imagination and creativity are. This is especially true if you’re making a niche item that you want to sell.

For example, there are modifications for the original PlayStation that replace the CD-ROM drive with an SD card reader (as reported in Hackaday.) This modification uses a Raspberry Pi Pico and a 3D-printed mount that elegantly puts the SD card slot where the CD-ROM drive used to be. That’s just one example of how you can make a professional-looking product with your own in-house 3D printer.


Joining a community where Raspberry Pi and 3D printing go hand in hand

As I already intimated earlier, there’s a lot of overlap between the 3D-printing community and the Raspberry Pi community. So, chances are that if you’ve been engaging with the world of online Raspberry Pi enthusiasts, you’ve also been exposed to 3D printing culture. The Venn diagram that includes people who dabble in both might not be a perfect circle, but the overlap is certainly significant.

There have certainly been plenty of people in those communities showing off their projects that rely on some way in 3D printed parts. If you’re already getting access to a community that includes people who can help you make the most out of your Pis using 3D printing, why not go for it?



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Microsoft Excel handles temporal data effectively if you know which formulas to use. The problem is that Excel includes over 20 date and time functions, but most people only ever need a small core set to build powerful, self-updating workflows. These essential date functions turn messy timelines into automated systems you can actually rely on.

All examples in this guide use an Excel table (Ctrl+T) named ProjectTracker (pictured below). To follow along, download a free copy of the Excel workbook containing this table. After you click the link, you’ll find the download button in the top-right corner of your screen.

A structured Excel tracking table containing project tasks, start dates, and due dates.

Excel views your calendar as a massive string of numbers

The secret logic behind spreadsheet dates

Excel stores dates as serial numbers—starting at January 1, 1900—and displays them using date formats. For example, June 1, 2026 is stored internally as 46174. This allows you to perform arithmetic on dates, such as adding 7 to move forward one week.

Excel intentionally treats 1900 as a leap year for compatibility with older spreadsheet systems. This is not historically accurate, but it rarely affects modern workflows unless you’re working with very old date ranges.

Keep your timelines moving with real-time tracking

Creating a live project countdown with TODAY

If you currently update a “Today” cell manually each morning to keep deadlines accurate, Excel can replace that workflow with a dynamic function that always returns the current date.

To create a live countdown that updates automatically as time passes, add a new column with the following name, formula, and formatting:

Column Name

Days Remaining

Formula

=[@[Due Date]]-TODAY()

Number Format

General

When you press Enter, Excel may automatically format the result as a date instead of a number. That’s why you must select the table column and set the format to General in the Number group of the Home tab.

Each task displays the number of days remaining until its due date, with negative values indicating tasks that are already overdue.

The next time you open the workbook, the calculations will refresh and automatically update based on the new day.

Isolate specific time frames by breaking dates into pieces

Structuring reports with MONTH, YEAR, and WEEKDAY

When working with project schedules, full date values like 2026-07-24 are often too detailed for analysis. You may need to group tasks by month, summarize yearly progress, or identify scheduling issues like weekend start dates.

To extract the month, delete the Days Remaining column, then add a new one with these parameters:

Column Name

Month Due

Formula

=MONTH([@[Due Date]])

Number Format

General

Each task returns a numeric month value, such as 6 for June or 7 for July, making it easier to filter and group tasks by month.

To isolate the year for reporting across longer timelines, simply replace MONTH in the formula above with YEAR:

Column Name

Year Due

Formula

=YEAR([@[Due Date]])

Number Format

General

The numeric year component is successfully calculated for every row in the tracking table in Excel.

To identify scheduling issues, such as tasks that begin on weekends, you need a different approach because weekdays are not stored as simple calendar parts like month or year. Instead, Excel assigns each weekday a numeric position based on a selected system.

Here’s what to do in a new column:

Column Name

Weekday Due

Formula

=WEEKDAY([@[Start Date]], 2)

Number Format

General

With the 2 argument, Excel treats Monday as day 1 and Sunday as day 7. Without this argument, Excel uses its default system where Sunday is treated as day 1 and Saturday as day 7.

Each task now returns a number from 1 to 7, where values 6 and 7 correspond to Saturday and Sunday, making weekend starts easy to identify.

The numeric weekday component is successfully calculated for every row in the tracking table in Excel.

OS

Windows, macOS, iPhone, iPad, Android

Free trial

1 month

Microsoft 365 includes access to Office apps like Word, Excel, and PowerPoint on up to five devices, 1 TB of OneDrive storage, and more.


Calculate exact working durations without the weekend clutter

Using NETWORKDAYS to measure real work time

Calendar-based durations often overstate actual work time. A task running from Friday to Monday appears to take four days, even though only two are working days.

So, to calculate true working days between project milestones, add this column:

Column Name

Working Days

Formula

=NETWORKDAYS([@[Start Date]], [@[Due Date]])

Number Format

General

Excel returns the total number of working days between the start and due dates, counting both endpoints when they fall on working days.

To include holidays, create a separate range containing vacation dates (for example, starting in cell F2). Then, select the first Working Days formula cell, and extend the formula to:

=NETWORKDAYS([@[Start Date]], [@[Due Date]], $F$2:$F$5)

Using absolute references ($) ensures the holiday range does not shift when the formula is filled down the table.

When you press Enter, you’ll see that the calculation now excludes both weekends and holidays.

If your workweek is non-standard, use NETWORKDAYS.INTL to define custom weekend rules.

Map future deadlines and end-of-month cutoffs

Using WORKDAY and EOMONTH for automated scheduling

Beyond tracking existing timelines, Excel can generate future dates based on rules such as working durations and billing cycles.

To calculate a projected completion date based on working days, remove the Due Date column, then add these two columns.

Column 1:

Column Name

Expected Duration

Values

Manually enter the number of working days.

Number Format

General

Column 2:

Column Name

Projected Finish

Formula

=WORKDAY([@[Start Date]], [@[Expected Duration]])

Number Format

Date

Excel returns a date representing the expected completion based on the specified number of working days. It automatically skips weekends and returns the next valid working date.

To calculate billing cutoffs that always land on month-end, use this workflow:

Column Name

Billing Cutoff

Formula

=EOMONTH([@[Start Date]], 0)

Number Format

Date

Excel returns the last day of the month for each task, making billing cycles consistent.

Planning ahead with month-based review dates

Shifting dates across months with EDATE

Not all scheduling problems are about counting days. In real project work, you often work in monthly cycles—such as scheduled reviews, audits, or check-ins that repeat at predictable intervals.

For example, if a project phase starts on a given date, and you need to schedule a formal review three months later, Excel has a built-in function designed exactly for this. EDATE shifts a date by a specified number of months while preserving the day of the month when possible.

Here’s how to use it:

Column Name

Review Date

Formula

=EDATE([@[Start Date]], 3)

Number Format

Date

This moves the start date forward by three full months. For example, if the start date is June 1, 2026, Excel returns September 1, 2026.

You can also move backward in time when planning earlier review checkpoints, such as retrospective checks or pre-launch assessments. In those cases, you use a negative value:

=EDATE([@[Start Date]], -2)

Unlike day-based subtraction, EDATE respects calendar structure, making it more reliable than manually shifting dates.


Take control of your spreadsheet timelines

Ignoring Excel’s built-in date tools often leads to hours of manual updates and fragile spreadsheets. By understanding how Excel stores dates and using functions designed to work with them, you can build schedules that update themselves and forecast future milestones automatically. Once you’ve mastered tracking time with formulas, the next step is visualizing it—turn your data into a dynamic timeline that updates as your project evolves.



Source link