In the other thread, this question came up:
It depends on your previous knowledge level, I guess. 3D printing is easy, but finicky. If you buy a decent printer (a Creality Ender 3 is a good and very cheap printer), you can be up and printing the aame day. There are thousands of 3D models you can download and print from places like Thingiverse.
If you want to do your own modelling, there are easy and hard programs out there. I decided to bite the bullet and learn Fusion 360. That does have a steep learning curve, unless you are already familiar with parametric modelling. I wasn’t, so it took me some time to get my head around it all. Luckily, there are lots of tutorials out there. But Fusion 360 is awesome. You start with sketches, it renders thm as 3D, you can build components and put them together, and then if you are happy you can either output files directly to your printer or CNC machine, or you can go the full CAM route and run stress simulations, range of motion tests for components that have joints, etc.
Since I’m now quasi-retired, I decided a good way to get my skills back up to speed and learn new tech would be to try to build a product all the way from concept to final prototype. So I also did some electronics work.
The product I decided to build was a lamp that is also an Internet of Things hub. To make all that happen I bought some LED strips, an arduino-compatible Wemos D1 clone using an ESP32 processor, and a few chips like a BME280 temp/pressure/humidity sensor, an NR24L01 radio chip, and a little Buck converter power supply. Total cost of all these parts was about $30.
Programming the processor was done in Microsoft Visual Studio in C++. If you aren’t a programmer, a much easier way to go is to use the Arduino IDE. Programming is really easy for these things, and you could get this whole setup running with about 2 pages of code. But if you aren’t a programmer and have never done any code, there’s definitely a learning curve there.
For the electronics, I breadboarded them first, then drew up the schematic. You can simply send the schematic to a service and they will send you back finished PC boards ready for soldering for just a couple of bucks each. There are even services out there that will build your PC board out, for about $20-$30 each plus parts if you don’t want to do the work. Or, you can find manufacturers who will build your entire product, design packaging, make the packaging, and send you however many you want, ready to ship.
Or, after you’ve developed your device, they will simply do everything else for you, including selling it to wholesalers, but you’ll only get a small cut of each unit.
The last home thing I’m trying is to use the CNC machine and copper-plated boards to actually carve the traces on a PC board so I can go from conception to an actual commercial-ready product just with the stuff I have at home.
This is the CNC router I got:
That also has a 5.5W laser that can cut plastic and wood and engrave all kinds of things.
The printer:
https://www.amazon.com/Creality-Printers-Motherboard-Carborundum-220x220x250mm/dp/B08BLFB9D4/ref=sr_1_1_sspa?crid=25MNEN9BDYGVN&dchild=1&keywords=creality+ender+3+v2&qid=1618452873&sprefix=Creality+Ender+3%2Caps%2C208&sr=8-1-spons&psc=1&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEyODVOQkFGUFZJMFRIJmVuY3J5cHRlZElkPUEwODY1OTE3MzcxVE5RM0lURFhSVSZlbmNyeXB0ZWRBZElkPUExMDI1NDExMTVGSzA2NkJCOFQzMyZ3aWRnZXROYW1lPXNwX2F0ZiZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU=
ESP32 Processor:
https://www.amazon.com/Development-NodeMcu-ESP-WROOM-32-Internet-Compatible/dp/B08R885LN5/ref=sr_1_1_sspa?dchild=1&keywords=wemos+d1+mini+esp32&qid=1618452954&sr=8-1-spons&psc=1&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUFBV1YzTzFBQ0lHVUgmZW5jcnlwdGVkSWQ9QTA2ODM4MzExOUZVTktZU0lUMjJMJmVuY3J5cHRlZEFkSWQ9QTA2NDg0NzYxQ1VZTEFVQ1JJWVlUJndpZGdldE5hbWU9c3BfYXRmJmFjdGlvbj1jbGlja1JlZGlyZWN0JmRvTm90TG9nQ2xpY2s9dHJ1ZQ==
To be honest, I was shocked at how easily this stuff goes together. I had the processor running everything, a web server to control it, and a web service I could call and get the weather from the BME280 chip going, all in a couple of evenings. When I was doing electronics a couple of decades ago, this would have required a team of people to build and cost many thousands of dollars.
If you want to make something out of metal or an exotic material, you can design it at home, print out plastic versions to test things like fit, and then send the file off to a service like Shapeways and they will return it in the material of your choice for very reasonable money.
By the way, those little ESP32 processors have bluetooth, Wifi, a full TCP-IP stack, and a huge number of inputs and outputs. Amazing little things.
If you have any other questions, ask away.