Skip to main content

How climbers can avoid unnecessary falls thanks to 3D printing

Making safety climbing gear accessible to everyone through 3D printing

Climbing equipment is usually very pricy, this makes a lot of sense most of the time but not always, for those not safety-critical pieces, 3D printing can substantially cheapen some of those parts/tools.


(a quick disclaimer before continuing, all the items that I present are my work unless the opposite is stated, done in the license-free version of Fusion360 for makers, if you want to know more about the design process, let me know in the comments, also if you want to learn how to use Fusion360, check out these videos: https://www.youtube.com/user/TheKHaug)

Climbing equipment is usually one of those things in which you don't want to skimp on, if you need to spend 150 € on that rope you better go do it instead of trying to get a cheaper one from AliExpress or whatever, your integrity depends on it.

The certification processes most of this equipment must undergo usually justifies these high prices, this is however not always the case for other things such as:

  • Climbing holds for gyms
  • Training devices like the one in this picture
  • Clip sticks for rock climbing
  • Chalk bags
A very good example is the well-known clip stick, the commercially available version of these products range from 35 up to 100 euros for the higher-range versions (PinGO Beta Stick Evo Ultra Long) This below is btw, a clip stick for climbing, it allows you to clip the first or the second biner from the ground, this is especially important when the first clips are far away from the ground, and the rope is still not hanging from anywhere (opposite to common belief the closer you are to the ground the higher the risk is, as a fall would likely imply smashing yourself against the ground, however the further you are from the ground the less likely it is that your fall finishes with your bones at ground level).

Most of these devices that not withstand high strains are not prone to break, and if they do that doesn't imply a high risk, nevertheless having some of these tools substantially improves your safety while climbing. The fact is that many people cannot access them due to their high prices, which has a detrimental effect on safety.




So, I took my chance of designing the very same tool in my house and print it for my personal use, in fact, when I did so I published it in My Mini Factory (link to my profile in case that you want to follow me: https://www.myminifactory.com/es/users/cerr3Do)but I even received messages from the brand and the original designers asking me to delete it and to the day I still receive requests of people asking for the blueprints of the original file.

Below you can see the 3D file I made, and even play a bit with it, I did it just looking for pictures of the product on the internet,

clip stick original by pablo.herrefu on Sketchfab


And then I proceed to print it and bought a telescopic pole of those that people use for painting hardly accessible stuff in walls or roofs. Here you go a picture of the finished product and the original one side to side for you to compare the result.


Since this could be an infringement of copyright or whatever (IDK much about the topic), I decided to make another design that I could share with the climbing community for the benefit of all, and I came up with this design, which I believe is as good as the one that costs up to 100 euros. As this is my design I can share it with you all for free if I want to, you can find it in my My Mini Factory profile (https://www.myminifactory.com/es/object/3d-print-clip-sitkc-head-170205). 


This was just the beginning, I discovered that many other people are sharing their designs for free and you all can just use them if you want to, and I made some other designs that can be useful for training, such as the one in the thumbnail, whose commercially available version costs around 75 euros, but you can get it printed for less than 10 euros (and a lot of time that's true), to the day I've had over a thousand visits to this design in My Mini Factory profile. I've also printed climbing holds, other finger training devices and even carabiners (ofc not safety ones)

You might be wondering why I put cerr3Do on my climbing-related designs, well this is I believe the prettiest mountain in my not-so-mountainous home town Castro-Urdiales, so that's why.

3D printing is such a powerful manufacturing technique, and I focused this entry on climbing because is a sport I like practicing, but I've also printed very useful things such as a Go PRO mount for my bike, racks for climbing material, and many other items that would be either too expensive to buy or don't exist (for instance a wheel for the cart of the dishwasher of my grandma).

These are just ideas I've sketched, I hope you can find some of your own, or if not take mine, and use them on your own.

Hope you liked this one,


 

















Comments

Popular posts from this blog

A first approach to IoT, connecting my 3D printer to the internet

My first approach to the IoT, connecting my 3D printer to the internet IoT is one of those fancy words that people like to talk about in conferences and in TedTalks without (apparently) having too much idea of what it is all about. Set up to manage the 3D printer through the internet This one is going to be a short entry where I don't go through code or anything, just wanted to talk about a bit about how I connected my 3D printer to the internet.  I've been in the 3D printing thing for a while now, about a year and I haven't stopped printing ever since I bought my Ender 3. Fortunately enough, I live in a big house where my room/working place is on the fourth floor and my 3D printing is on the first one. You might be thinking as well: "OK Pablo but where do you want to bring us? Go to the point" Well, as you might have noticed there are two floors in betw...

Advent of Code, day 2

We made it to Day 2 of Advent of Code I have kept my promise for 2 days in a row. As weird as it seems for this day and age, I have kept my promise and today is the day 2 of the Advent of Code, this time with elves involved. There you go, the statement of today's first problem down below: And usual, my solution: import pandas as pd import re import numpy as np filepath = "/content/input 1.txt" with open (filepath, 'r' ) as file :     lines = [line.strip() for line in file .readlines()] lines_split = [] for line in lines:   token = re.findall(r '\w+|[^\s\w]' , line)   lines_split.append(token) blue_list = [] green_list = [] red_list = [] for line in lines_split:   blue,green,red = 0 , 0 , 0   for ix, word in enumerate (line):     if word == "blue" :       if blue < int (line[ix -1 ]):         blue = int (line[ix -1 ])     if word == "green" :       if green < int (...

You can know talk to @CastroTiempo and not only that, it will respond you

You can now talk to @CastroTiempo Twitter bot, and not only that, it will respond you! Implementing some simple interaction capabilities as the previous step to Natural Processing Language implementation, this time you can ask it how the weather is like in basically any city around the world. Hola @luisvolumentres , en Kiruna hay cielos poco nubladoss y la temperatura es de 1.0 ºC, para obtener mas información pincha en https://t.co/5dO5q6RkKX — El Tiempo en Castro (@CastroTiempo) April 14, 2021 So I was tinkering about how I could improve the @CastroTiempo Twitter Bot as it had many flaws and it still does. The first ideas that came to my mind were the following ones: Forecasting capabilities Interaction capabilities Update the weather report it provides with the temperature (obviously) and whether it was raining there were clear skies or whatever. To put the data in a public access database so there's a repository of information that every...