You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.0 KiB

2 years ago
# Profilometer Probe
2 years ago
## Device was created as part of a bachelor's thesis at BUT VUT 2022/2023 named Probe for Determining the Surface Condition of Small Diameter Barrels
## Detailed description of device design and implementation is inside thesis
2 years ago
![alt text](https://github.com/aprochazka/ProfilometerProbe/blob/main/Probe_Render.png?raw=true)
![alt text](https://github.com/aprochazka/ProfilometerProbe/blob/main/Probe_Assembled.jpg?raw=true)
2 years ago
## Hardware
2 years ago
### Models
2 years ago
- All 3D printable models are located inside Models folder
- Models are designed to be printed with standard 2mm layer height
- When slicing be sure to print outer walls first to make print more accurate
2 years ago
2 years ago
### Assembly
- All screws are size M3
- Assembly should be done accordingly
2 years ago
### PCB
- PCB should be two sided with 1.6mm width
- Design files are created in KiCad
### Components
2 years ago
- Development board: Nucleo L432KC
- Camera: ArduCam mini 5MP Plus
- Distance sensor: Pimoroni LV53L1X
- Complete list of components and connectors for probe can be found inside HW/Parts.md
2 years ago
## Firmware for profilometer probe
2 years ago
### Build
- Build using Makefile inside Firmware folder (dependency: arm-none-eabi)
- Flash onto hardware using flash option for make command `$ make flash`
### Usage
2 years ago
- Connect probe to pc using usb c cable and firmware will start sending sending data automatically
2 years ago
### Documentation
2 years ago
- Create documentation using 'doc' option of Makefile '$ make doc'
## Software for receiving data
### Build
2 years ago
- Build using Makefile inside Receiver folder
2 years ago
### Usage
2 years ago
- Has to be run with sudo permissions to correctly access USB CDC port.
- '$ sudo ./main -p <name of the port> [-s Save received jpeg to files] [-r Print raw received CDC data to standard output]'
- Prefer running with optional -s command for ability to inspect already captured images
2 years ago
### Documentation
2 years ago
- Create documentation using 'doc' option of Makefile '$ make doc'
2 years ago
### TODO
2 years ago
- Process image and filter only laser line from it
- Use precessed data to determine depth or height of irregularities
2 years ago