Skip to content

Instantly share code, notes, and snippets.

View guigur's full-sized avatar
🚰
open sauce

Guillaume Arthaud guigur

🚰
open sauce
View GitHub Profile
@guigur
guigur / Logo Fabriquet SCAD Couleur
Created November 21, 2022 17:25
Logo Fabriquet SCAD Couleur
cube_dim = [67,134,40];
translate_dim = 12;
offsetmod = 0.5;
module offset_col(dim, side, c)
{
offset_val = (side=="x" ? [offsetmod, -offsetmod, -offsetmod] :
(side=="y" ? [-offsetmod, offsetmod, -offsetmod] :
(side=="z" ? [-offsetmod, -offsetmod, offsetmod] :
@guigur
guigur / Logo Fabriquet SCAD Simple
Created November 21, 2022 17:24
Logo Fabriquet SCAD Simple
cube_dim = [67,134,40];
translate_dim = 12;
//cube(cube_dim, center=true);
/*
translate([1,1,1]){
cube(cube_dim, center=true);
}
*/
color("#ff0000"){
Create an empty repo on GitHub
git remote add github <address_of_repo>
git push --mirror github
alias od='if [ $# = 0 ]; then cd .; else cd $1; fi && ls'
[main]
# Auto save settings when closing window.
auto_save = 0
# The version of this profile's format. DO NOT EDIT IT!
version = 0.9.9.3
# The default font name of vte terminal.
font_name = DejaVu Sans Mono 12
/**
** GUIGUR 2018
** This class move motors
*/
#include "headers/Motor.hpp"
Motor::Motor(int stepPin, int dirPin, int endStpPin)
{