This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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] : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cube_dim = [67,134,40]; | |
| translate_dim = 12; | |
| //cube(cube_dim, center=true); | |
| /* | |
| translate([1,1,1]){ | |
| cube(cube_dim, center=true); | |
| } | |
| */ | |
| color("#ff0000"){ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Create an empty repo on GitHub | |
| git remote add github <address_of_repo> | |
| git push --mirror github |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias od='if [ $# = 0 ]; then cd .; else cd $1; fi && ls' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| ** GUIGUR 2018 | |
| ** This class move motors | |
| */ | |
| #include "headers/Motor.hpp" | |
| Motor::Motor(int stepPin, int dirPin, int endStpPin) | |
| { |