Table des matières
Grbl
https://github.com/grbl/grbl/wiki/Compiling-Grbl
https://github.com/grbl/grbl/wiki/Frequently-Asked-Questions
http://wiki.linuxcnc.org/cgi-bin/wiki.pl?CoordinateSystems
https://github.com/grbl/grbl.git
cd ~/Arduino git clone https://github.com/grbl/grbl.git cd grbl make clean make grbl.hex sudo PROGRAMMER="-c arduino -P /dev/ttyACM0" make flash
NB:attention si une reprap est connectée au PC de ne pas la reprogrammer par erreur
Shield cnc
Schéma des broches utilisées: http://blog.protoneer.co.nz/arduino-cnc-shield/
montage: http://blog.protoneer.co.nz/arduino-cnc-shield-v3-00-assembly-guide/
configuration 4eme axe: http://blog.protoneer.co.nz/arduino-cnc-shield-v3-00-assembly-guide/#4THAXIS
http://3dpburner.blogspot.fr/p/lectronic.html
http://www.usinages.com/threads/grbl-arduino-uno-et-cnc-shield.73836/
http://blog.protoneer.co.nz/arduino-cnc-shield/
driver pololu: https://www.pololu.com/category/120/stepper-motor-drivers
j'ai les: A4988 Stepper + Motor Board w/ Heat Sink + 2* CNC Shield + UNO R3 for 3D Printer
http://forum.arduino.cc/index.php?topic=300243.0
schematique: http://blog.protoneer.co.nz/wp-content/uploads/2013/07/Arduino-CNC-Shield-Scematics-V3.XX_.jpg
Achat matériel à toulouse: https://www.reprap-france.com/produit/1234568423-carte-shield-cnc-grbl
Infos commandes G-code
ouvrir la console à 115200 Bds
descriptif commandes gcode: http://reprap.org/wiki/G-code/fr
GO pour mouvement rapide jusqu'a une position absolue souhaitée
G0X0 G0X1 G0Y0 G0Y1 G0X0Y0
pour avoir les infos
?
quand je fait la commande G1, bCNC dit que le débit n'est pas configuré, il faut l'indiquer
G1X1F100
on peut régler la vitesse une fois (en mm/min)
G0F100 G1X0
Utilisation et GUI
Pleins d'infos et liste des programmes associés: https://github.com/grbl/grbl/wiki/Using-Grbl
J'utilise bCNC: https://github.com/vlachoudis/bCNC
cd ~/Arduino/bCNC git clone https://github.com/vlachoudis/bCNC.git
Grbl piloté via bluetooth
vente
configuration grbl: https://www.youtube.com/watch?v=-D_rNyWcAHM
scannerisation 3D avec grbl
Structures métallique
cnc grbl avec structure metallique bas cout: https://www.youtube.com/watch?v=WKmzlMvxC7I
cnc avec glissieres tirroir: http://hackaday.com/2014/07/11/400-diy-cnc-machine-is-surprisingly-simple/
cnc a base de lecteur dvd: http://www.instructables.com/id/How-to-Make-Arduino-Based-Mini-CNC-Plotter-Using-D/?utm_source=newsletter&utm_medium=email
démontage dvd: http://paplaukias.co.uk/blog/dvd-rw-teardown/
Conseils: http://www.instructables.com/id/Cheap-CNC-Dos-and-Donts/?ALLSTEPS
Plotter simpliste: http://www.instructables.com/id/Drawing-Plotter/?ALLSTEPS
https://showsyouhow.blogspot.fr/2007/12/diy-dvd-burner-laser-pointer-proper-way_18.html
Structure imprimée pour moteurs pas à pas de lecteur DVD
Structure imprimée plus tubes section carré
Structure imprimée + tube
http://www.thingiverse.com/make:268689 http://www.thingiverse.com/thing:724999
http://www.vicious1.com/specifications/
http://www.reprap.org/wiki/Mostly_Printed_CNC
https://www.youtube.com/watch?v=tQwVYTy2-Mg
roulements 608: http://www.ebay.fr/sch/i.html?_from=R40&_trksid=m570.l1313&_nkw=608+bearing&_sacat=0
montage d'un mpcnc: http://www.fabriqueurs.com/montage-dune-mostly-printed-cnc/
pièces nécessaires: http://www.vicious1.com/blog/parts/
modèles 3D pour tube en diamètre 25: http://www.thingiverse.com/thing:790533
tube diamètre 25 en 2m: http://www.mr-bricolage.fr/quincaillerie-3/amenagement-et-etendage/support-et-tringle-de-penderie/tube-de-penderie-2m-87527.html?magasin=Castanet-Toulouse
De la bonne CNC
Adaptation reprap à milling
http://reprap.org/wiki/CNC_Mill
http://reprap.org/wiki/CNCGcodeController
https://github.com/VirToReal/CNC_gcode-to-reprap-converter
pièce pour montage stylo sur reprap: http://www.thingiverse.com/thing:2095520
PCB Milling
Pcb-gcode
Plugins pour eagle pour générer le gcode; récupéré depuis http://reprap.org/wiki/PCB_Milling
http://pcbgcode.org/list.php?15
exemple d'utilisation de pcbgcode: http://www.brusselsprout.org/PCB-Routing/
cd ~/eagle-6.1.0 cp ulp/source/pcb-gcode-prg.scr scr/ cd /scr mkdir source cp pcb-gcode-prg.scr source/ cd ../ cp ulp/source/pcb-gcode-menu.scr scr/ chmod a+x ulp/source/viewer.linux.sh
Emulateur de cnc
http://camotics.org/download.html
sudo apt-get install gdebi
wget http://camotics.org/releases/public/release/camotics/ubuntu-precise-64bit/v1.0/camotics_1.0.6_amd64.deb sudo gdebi camotics_*.deb camotics
mkdir ~/camotics cd ~/camotics # Install the prerequisites sudo apt-get install scons build-essential libbz2-dev zlib1g-dev libexpat1-dev libssl-dev libboost-iostreams-dev libboost-system-dev libboost-filesystem-dev libboost-regex-dev libsqlite3-dev libv8-dev qt4-dev-tools libqt4-dev libqt4-opengl-dev libcairo2-dev git # Get the source git clone https://github.com/CauldronDevelopmentLLC/cbang git clone https://github.com/CauldronDevelopmentLLC/CAMotics # Build C! scons -C cbang export CBANG_HOME=$PWD/cbang # Build CAMotics cd CAMotics scons # Build the package scons package # Install the package sudo dpkg -i camotics_*.deb