This file contains 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
/* --------------------------------------------------------------------- | |
* PWM LED Brightness control for ATtiny13. | |
* Datasheet for ATtiny13: http://www.atmel.com/images/doc2535.pdf | |
* | |
* Pin configuration - | |
* PB1/OC0B: LED output (Pin 6) | |
* PB2/ADC1: Potentiometer input (Pin 7) | |
* | |
* ~100 bytes. | |
* |
This file contains 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
// | |
// GNU GPL v2 | |
// [email protected] | |
// hydraraptor.blogspot.com | |
// | |
// Adapts ESP12 module to 0.1" grid. | |
// | |
eps = 1/128; // small fudge factor to stop CSG barfing on coincident faces. | |
layer_height = 0.25; // slicer layer height | |
extrusion_width = 0.5; // slicer extrusion width |
OlderNewer