I want a 3D printer! I have no experience in 3D printing, but i decided to build it myself instead of just buying one. At first I tried to design it myself and after couple of days I concluded that if I build it from scratch, then end result would be probably something big, ugly and probably not very good at printing. So, I decided not to design it myself, but find some simple printer design that I could build myself. There is no need to invent bicycle if there is community who already invented and improved one. Googling around a bit, I found RepRap and from lot of YouTube videos of DIY 3D printers that I have seen, it seems that lot of people are building Prusa Mental type printers. Reading about different printer designs on RepRap site, I chose Prusa i3. There is no real reason for why I chose that design. It just seemed simple and beautiful. My goal is to build it as cheep as possible, but not to compromise too much on printing quality... whatever that means.
I will blog about this building process mostly for myself. This blog series will not be about how to build the Prusa i3, but rather my experiences building one, someone who has never had any 3D printer experience or anything to do with 3D printers. Maybe I will inspire someone to build their own printer.
At the moment most of the parts are already ordered from eBay, they will arrive within next 2 to 4 weeks and I will blog about my building process as parts are coming in.
I am new to Arduino and C++ and as usual for first-timers, the first project has to do something with some LED-s and buttons.
Nothing complicated, but looking at examples I realized quite soon that there is lot of coding that has to be done to have proper toggle button functionality with debounce handling. Too much for such a simple thing as push button. And if there happens to be multiple buttons, then it gets even worse. So, there has to be some library that handles all this, there probably is, but I decided that I need to practice some C++ and create my own library. So, couple of days tinkering and here is my first library, named PBtnToggle found in GitHub.
This library handles debouncing, has button press event, release event and long press event. And does not use delay(). User can decide what happens after long press - will it trigger release event after button release or trigger after next button press and release. I am quite happy what I created. There is some changes I would like to do at some point, but I decided that current version is ready for public.
Here's a demo video:
So, how much coding have to be done to use this library?
Lets take Switch example code from Arduino website.
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
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
PBtnToggle* btn = new PBtnToggle(2, HIGH); // init button
int outPin = 13; // the number of the output pin
int state = HIGH; // the current state of the output pin
void setup()
{
pinMode(outPin, OUTPUT);
btn->onPress(buttonPressed);
}
void buttonPressed(int btn, int status)
{
if (state == HIGH)
state = LOW;
else
state = HIGH;
digitalWrite(outPin, state);
}
void loop()
{
btn->check(); // mandatory method that has to be called from loop, optionally also from attached interrupt
}
Init PBtnToggle object, specify pin where button is wired and pin state when button is pressed down. This will also set pin mode to INPUT:
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
PBtnToggle* btn = new PBtnToggle(2, HIGH); // init button
int outPin = 13; // the number of the output pin
int state = HIGH; // the current state of the output pin
void setup()
{
pinMode(outPin, OUTPUT);
btn->onPress(buttonPressed);
}
void buttonPressed(int btn, int status)
{
if (state == HIGH)
state = LOW;
else
state = HIGH;
digitalWrite(outPin, state);
}
void loop()
{
btn->check(); // mandatory method that has to be called from loop, optionally also from attached interrupt
}
In setup(), register function that will be called when button is pressed down:
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
PBtnToggle* btn = new PBtnToggle(2, HIGH); // init button
int outPin = 13; // the number of the output pin
int state = HIGH; // the current state of the output pin
void setup()
{
pinMode(outPin, OUTPUT);
btn->onPress(buttonPressed);
}
void buttonPressed(int btn, int status)
{
if (state == HIGH)
state = LOW;
else
state = HIGH;
digitalWrite(outPin, state);
}
void loop()
{
btn->check(); // mandatory method that has to be called from loop, optionally also from attached interrupt
}
Create function that will be called by library, registered in setup(). This function will contain anything that has to be done in button press:
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
PBtnToggle* btn = new PBtnToggle(2, HIGH); // init button
int outPin = 13; // the number of the output pin
int state = HIGH; // the current state of the output pin
void setup()
{
pinMode(outPin, OUTPUT);
btn->onPress(buttonPressed);
}
void buttonPressed(int btn, int status)
{
if (state == HIGH)
state = LOW;
else
state = HIGH;
digitalWrite(outPin, state);
}
void loop()
{
btn->check(); // mandatory method that has to be called from loop, optionally also from attached interrupt
}
Call check() function, without this PBtnToggle will not work:
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
PBtnToggle* btn = new PBtnToggle(2, HIGH); // init button
int outPin = 13; // the number of the output pin
int state = HIGH; // the current state of the output pin
void setup()
{
pinMode(outPin, OUTPUT);
btn->onPress(buttonPressed);
}
void buttonPressed(int btn, int status)
{
if (state == HIGH)
state = LOW;
else
state = HIGH;
digitalWrite(outPin, state);
}
void loop()
{
btn->check(); // mandatory method that has to be called from loop, optionally also from attached interrupt
}
Atleast for me, this code looks a lot nicer. This is end result that does same thing that example code from Arduino webpage.
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
PBtnToggle* btn = new PBtnToggle(2, HIGH); // init button
int outPin = 13; // the number of the output pin
int state = HIGH; // the current state of the output pin
void setup()
{
pinMode(outPin, OUTPUT);
btn->onPress(buttonPressed);
}
void buttonPressed(int btn, int status)
{
if (state == HIGH)
state = LOW;
else
state = HIGH;
digitalWrite(outPin, state);
}
void loop()
{
btn->check(); // mandatory method that has to be called from loop, optionally also from attached interrupt
}
Compiler log for original code:
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
Sketch uses 1,694 bytes (0%) of program storage space. Maximum is 253,952 bytes.
Global variables use 27 bytes (0%) of dynamic memory, leaving 8,165 bytes for local variables. Maximum is 8,192 bytes.
Compiler log for PBtnToggle example code:
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
Sketch uses 2,708 bytes (1%) of program storage space. Maximum is 253,952 bytes.
Global variables use 25 bytes (0%) of dynamic memory, leaving 8,167 bytes for local variables. Maximum is 8,192 bytes.
So library takes about 1KB extra flash and memory footprint is about same. But your sketch will be probably smaller if you have multiple buttons.
Please, let me know if this library is useful for you and if you have some ideas that could improve this library, then please let me know here in comments or in GitHub for more technical ideas/fixes.
Also, if you know any other libraries that do something similar, then let me know about it. I would like to compare them.