commit b7f4e7b76ed6f262793457383fe31858cc52025b Author: filip Date: Mon Mar 8 21:53:08 2021 +0100 First commit diff --git a/elevator1/elevator1.ino b/elevator1/elevator1.ino new file mode 100644 index 0000000..473f199 --- /dev/null +++ b/elevator1/elevator1.ino @@ -0,0 +1,33 @@ +void setup() { + // put your setup code here, to run once: + +} + +class buttons() { + public: + int button1 = 22; + int button2 = 23; + int button3 = 24; +}; + +class 7segment() { + public: + void display(numberToDisplay) { + //bcd code + } +}; + +class led() { + public: + int led1 = 4; + int led2 = 5; + int led3 = 6; + void on(ledNumber) { + //out + } +}; + +void loop() { + // put your main code here, to run repeatedly: + +} diff --git a/gpio_usage.ods b/gpio_usage.ods new file mode 100644 index 0000000..b890028 Binary files /dev/null and b/gpio_usage.ods differ