First Commit

This commit is contained in:
MindCreeper03
2025-02-27 19:31:50 +01:00
parent bcbb6aff9a
commit e490df1715
2470 changed files with 1479965 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
/*
MIT License
Copyright (c) 2017-2018, Alexey Dynda
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "buttons.h"
#include "ssd1306.h"
uint8_t getPressedButton(uint8_t analogPin)
{
int buttonValue = analogRead(analogPin);
if (buttonValue < 100) {
return BUTTON_RIGHT;
}
else if (buttonValue < 200) {
return BUTTON_UP;
}
else if (buttonValue < 400){
return BUTTON_DOWN;
}
else if (buttonValue < 600){
return BUTTON_LEFT;
}
else if (buttonValue < 800){
return BUTTON_SELECT;
}
return BUTTON_NONE;
}

View File

@@ -0,0 +1,37 @@
/*
MIT License
Copyright (c) 2017-2018, Alexey Dynda
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include <stdint.h>
const uint8_t BUTTON_NONE = 0;
const uint8_t BUTTON_RIGHT = 1;
const uint8_t BUTTON_UP = 2;
const uint8_t BUTTON_DOWN = 3;
const uint8_t BUTTON_LEFT = 4;
const uint8_t BUTTON_SELECT = 5;
uint8_t getPressedButton(uint8_t analogPin);

View File

@@ -0,0 +1,105 @@
/*
MIT License
Copyright (c) 2017-2018, Alexey Dynda
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*
* Attiny85 PINS
* ____
* RESET -|_| |- 3V
* SCL (3) -| |- (2)
* SDA (4) -| |- (1)
* GND -|____|- (0) - BUTTONS module
*
* Atmega328 PINS: connect LCD to A4/A5,
* Z-keypad ADC module on A0 pin.
*/
#include "ssd1306.h"
#include "buttons.h"
#ifndef A0
#define A0 0
#endif
#define BUTTON_PIN A0
/* Define menu items of the menu box */
const char *menuItems[] =
{
"menu item 1",
"menu item 2",
"menu item 3",
"menu item 4",
"menu item 5",
"menu item 6",
"menu item 7",
"menu item 8",
};
/* This variable will hold menu state, processed by SSD1306 API functions */
SAppMenu menu;
static uint8_t button;
void setup()
{
ssd1306_128x64_i2c_init();
ssd1306_setFixedFont(ssd1306xled_font6x8);
ssd1306_fillScreen( 0x00 );
/* Initialize main menu state */
ssd1306_createMenu( &menu, menuItems, sizeof(menuItems) / sizeof(char *) );
/* show menu on the display */
ssd1306_showMenu( &menu );
button = getPressedButton(BUTTON_PIN);
}
void loop()
{
uint8_t newButton = getPressedButton(BUTTON_PIN);
if (newButton == button)
{
return;
}
button = newButton;
switch (button)
{
case BUTTON_UP:
/* move menu cursor up and refresh menu on the display */
ssd1306_menuUp( &menu );
ssd1306_updateMenu( &menu );
break;
case BUTTON_DOWN:
/* move menu cursor down and refresh menu on the display */
ssd1306_menuDown( &menu );
ssd1306_updateMenu( &menu );
break;
case BUTTON_SELECT:
/* You always can request current position of menu cursor, by calling ssd1306_menuSelection() */
break;
default:
break;
}
}