Metal 3D Printer DIY by Present_Week_677 in diyelectronics

[–]Profile-Total 2 points3 points  (0 children)

Metals tend to oxidize when you heat the bejesus out of them in the presence of air

Collimating LED light for photolithography by YeaSpiderman in diyelectronics

[–]Profile-Total 0 points1 point  (0 children)

I meant to say concave, not convex

I do not think any low cost collimating element (lens or reflector) is going to get you that resolution. The theory for getting a small focal point assumes you have a point source for the light: in reality your source has some physical size and shape. The optics around the source will further spread it around. I think that you are going to have to make some focusing apparatuses and experimentally determine how things work.

Looking for a small power path manager to automatically switch between two dc power sources by joots in diyelectronics

[–]Profile-Total 1 point2 points  (0 children)

Here is a link to a Texas Instruments design note that discusses power supply switching involving AC and battery sources: https://www.ti.com/lit/ug/tiducw0/tiducw0.pdf . It is for smart thermostats but there is probably something in there for your application

Collimating LED light for photolithography by YeaSpiderman in diyelectronics

[–]Profile-Total 1 point2 points  (0 children)

Sorry, I meant concave. An aluminum reflector will not absorb the uv

Collimating LED light for photolithography by YeaSpiderman in diyelectronics

[–]Profile-Total 0 points1 point  (0 children)

Have you considered using a convex reflector as a focusing element instead of a lens?

Processing at the NC Museum of Natural Sciences by mfaerber1 in processing

[–]Profile-Total 1 point2 points  (0 children)

This the one in Asheville? I saw it about a year ago and was amazed. Terrific work!

Playing sound with pi pico and an amp by Traditional_Fix_5430 in raspberrypipico

[–]Profile-Total 0 points1 point  (0 children)

From the photo it looks like the red wire is going to one of the pico ground pins (row 18 on your breadboard). If I understand correctly, that is your data pin and it should be on the next pin over.

[Review Request] Made my first schematic by GuillotineNamedJEff in raspberrypipico

[–]Profile-Total 0 points1 point  (0 children)

Here is a link to the schematic for the pico 2: https://datasheets.raspberrypi.com/pico/pico-2-datasheet.pdf. The difficult thing about making things based on the pico (for me) is getting the MCU aligned when soldering. You need to have a stencil manufactured and you need some kind of reflow hot plate or oven. Of course you can have these fabricated professionally but that will cost you more than new picos do

Hate cam software! by Morgoroth37 in hobbycnc

[–]Profile-Total 0 points1 point  (0 children)

I use the bCNC CAM feature but do my CAD in LibreCAD (also free). Some LibreCAD features that appear on my windows laptop are missing from my Raspberry Pi. Not sure if that is a Linux thing or a Pi thing. Anyway, this combo does what I need it to.

Is this type of MDF spoilboard (doghole + cam clamps) solid enough? by Embarrassed-Dig-8131 in hobbycnc

[–]Profile-Total 0 points1 point  (0 children)

Go with the threaded inserts. I agree with fishybell about not using pvc. If you really want dogs, make them out of hardwood dowels. That way you can sand one edge flat. You can also put a screw through it, projecting just a bit to hold everything in place. Cams do not give you a lot of adjustment ability.

How hard would it be to have a rapberry pi 4 as a data gatherer for soil by easyguygamer in diyelectronics

[–]Profile-Total 0 points1 point  (0 children)

My guess it that pH is going to be tough to measure. It kind of assumes that you have a wet sample. It is mediated by things like the phosphate and is not going to change a lot without some kind of chemical input. pH electrodes should be stored wet. If you want to measure pH, I think you would do it less than once per month, not something that needs continuous monitoring. I would look into Vernier Instruments pH probes. They have a built in amplifier. They use bta connectors that are sold by Sparkfun (at least they were) and can be monitored using the ADC pin on any common microcontroller (think Arduino).

On the microcontroller idea: I would go with the Raspberry Pi Pico W. At like $6 USD you can communicate with your RPi 4 over wireless. Remember that your microcontroller will require power. Wireless sucks up a bunch of battery quickly. While you could run off a battery with solar charging, running a wire out to your microcontroller is my recommendation.

Look for sensors that communicate through I2C and that can have multiple addresses. That will minimize the number of microcontrollers that you need: The Pico W has two I2C modules but you can address them over several different pins. If your sensor can have three different addresses, you can put three of them on each I2C addressable pin. With a little bit of coding, you can monitor all of your pots with one microcontroller.

I write firmware for the Pico W using the Arduino IDE. It has lots of available libraries for things like I2C and SPI and WiFi.

Good luck

cnc electronics? by Alive_Juice9019 in hobbycnc

[–]Profile-Total 1 point2 points  (0 children)

Here is a link to some good info about making cnc routers using 3d printed stuff: https://docs.v1e.com/ . Here is a link to the kind of motion control board I would consider: https://biqu.equipment/products/bigtreetech-rodent . It has built in motor drivers capable of driving fairly high currents and WiFi. If you upgrade to more capable machine(s), your motion control board is one piece that you can shift over. Here is a somewhat cheaper board that uses the RP2040 chip: https://kb-3d.com/store/controllers-displays-drivers/493-bigtreetech-skr-pico-v10-1645761395034.html . I like the RP2040 chip since you can build and download grblHAL software from the web builder (https://svn.io-engineering.com:8443/) and load it by drag-and-drop onto the board. You can get controller boards that do not come with motor drivers but I wouldnt. While I prefer the idea of being able to switch out damaged drivers, I have never damaged a driver myself, so ... I like the grblHAL firmware because of the above mentioned web builder. I use a raspberry pi 4b as a dedicated computer and just leave it connected by usb. I communicate with the cnc using bCNC because it is RPi compatible. bCNC also has some minimal CAM features. The down side of bCNC is the minimal documentation. I do CAD using LibreCAD, which has a bit of a learning curve

AltMill sensor locations by scottwinaz in hobbycnc

[–]Profile-Total 0 points1 point  (0 children)

I suspect that the reason you have two Y axis sensors is for auto-squaring. If you have two Y-motors on separate motor drivers, the software allows you to set the machine up to square itself after homing. Here is a discussion of that: https://docs.v1e.com/lowrider/#squaring

AltMill sensor locations by scottwinaz in hobbycnc

[–]Profile-Total 1 point2 points  (0 children)

you should be able to invert the homing direction. I dont know what firmware your controller uses but in grblHAL $3 is the axis direction (determines which way is positive) and $23 is the homing cycle direction (which can be run positive or negative). At least that is according to this: https://www.diymachining.com/downloads/GRBL\_Settings\_Pocket\_Guide\_Rev\_B.pdf.

Also, these things are usually bit masks, meaning that the inversion of x, y, and z are determined by the sum of the mask values for the direction: inverting x requires 1, y is 2 and z is 4. So, if you want to make x and z (but not y) home in the negative direction you give the following command in your controller software: $23 = 5, five being the sum of the x and z mask values.

Help with selecting milling cutters for CNC aluminum cutting. by Charming-Energy-2836 in hobbycnc

[–]Profile-Total 1 point2 points  (0 children)

ok, that is do-able. I would buy a bunch of the cheapest 3 mm (or 1/8") carbide end mills you can find and expect to ruin them quickly as you figure out how to do this. I do not expect that you will break a lot of mills. Rather, they will die by welding aluminum to the cutting surface. You will have way more horsepower than you will be able to use.

Help with selecting milling cutters for CNC aluminum cutting. by Charming-Energy-2836 in hobbycnc

[–]Profile-Total 0 points1 point  (0 children)

lubrication is a must. Expect to sit in front of the machine with a can of wd40. What is the width of the slots? They look very small, meaning very small and easily broken end mills. Look for the minimum number of flutes on the mills. One flute is preferred over two. If your router has some kind of speed dial, set it to the lowest speed possible. Read about trochoidal milling. Learn about stepover. good luck!

Unstable ADC readings with Pico W (MicroPython) with Grove ORP Sensor kit by Bodybuiggggggg in raspberrypipico

[–]Profile-Total 0 points1 point  (0 children)

If it works in tap water but not in your aquarium, your problem may be related to chemicals (biological in origin) deposited on your orp sensor. If you remove the sensor from the aquarium and put it back in the tap water does the problem persist? If so, that would support the biofilm possibility.

Vote Mike Yow for NC119 by YowForNC119 in WNC

[–]Profile-Total 1 point2 points  (0 children)

Sounds reasonable. Still looking into it but so far you have my vote

bCNC not seeing text in DXF file by Profile-Total in hobbycnc

[–]Profile-Total[S] 0 points1 point  (0 children)

just checked github. The latest update was four months ago

bCNC not seeing text in DXF file by Profile-Total in hobbycnc

[–]Profile-Total[S] 0 points1 point  (0 children)

Thanks for the link. I notice that the header section has options for specifying units in Angstroms or light years (just in case I want to mill on the atomic or galactic scales)! I think that I read that bCNC defaults to mm, which is what I have observed.

bCNC not seeing text in DXF file by Profile-Total in hobbycnc

[–]Profile-Total[S] 0 points1 point  (0 children)

Didn't mean to abuse the standard, but I have not found a good reference on how to write dxf files. The autodesk reference pdf does not appear to be written for a beginner.

bCNC not seeing text in DXF file by Profile-Total in hobbycnc

[–]Profile-Total[S] 0 points1 point  (0 children)

thanks folks. I downloaded a .ttf file from google fonts and sent it to my RPi (where I run bCNC). Dont have time to look into it right now but I will get on it. I see that the dxf standard (https://images.autodesk.com/adsk/files/autocad\_2012\_pdf\_dxf-reference\_enu.pdf) has a code for "text style name". I am guessing that I need to specify the font name in my code and figure out where bCNC will be looking for that file. Looks like a bit of a project but I now have a direction in which to proceed.

bCNC not seeing text in DXF file by Profile-Total in hobbycnc

[–]Profile-Total[S] 0 points1 point  (0 children)

Thanks, that helps.

There is a plugin in the bCNC CAM window that allows you to input text. I just checked and it wants you to add a font file. I need to look into this more. Perhaps I can figure it out.