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,251 @@
/*
MIT License
Copyright (c) 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)
*
* Attiny85 I2C PINS: see picture above
* Digispark I2C PINS: D0/D2
* Atmega328 I2C PINS: connect LCD to A4/A5
* ESP8266 I2C PINS: GPIO4/GPIO5
* ESP32 I2C PINS: 21/22
*/
#include "ssd1306.h"
#include "nano_engine.h"
/*
* Define snowflake images directly in flash memory.
* This reduces SRAM consumption.
* The image is defined from bottom to top (bits), from left to right (bytes).
*/
const PROGMEM uint8_t snowFlakeImage[8][8] =
{
{
0B00111000,
0B01010100,
0B10010010,
0B11111110,
0B10010010,
0B01010100,
0B00111000,
0B00000000
},
{
0B00010000,
0B01010100,
0B00111000,
0B11101110,
0B00111000,
0B01010100,
0B00010000,
0B00000000
},
{
0B00111000,
0B00010000,
0B10111010,
0B11101110,
0B10111010,
0B00010000,
0B00111000,
0B00000000
},
{
0B00011000,
0B01011010,
0B00100100,
0B11011011,
0B11011011,
0B00100100,
0B01011010,
0B00011000
},
{
0B00010000,
0B00111000,
0B01010100,
0B11101110,
0B01010100,
0B00111000,
0B00010000,
0B00000000
},
{
0B10000010,
0B00101000,
0B01101100,
0B00010000,
0B01101100,
0B00101000,
0B10000010,
0B00000000
},
{
0B01000100,
0B10101010,
0B01101100,
0B00010000,
0B01101100,
0B10101010,
0B01000100,
0B00000000
},
{
0B00101000,
0B01010100,
0B10111010,
0B01101100,
0B10111010,
0B01010100,
0B00101000,
0B00000000
},
};
NanoEngine1 engine;
class SnowFlake: public NanoFixedSprite<NanoEngine1, engine>
{
public:
SnowFlake(): NanoFixedSprite<NanoEngine1, engine>({0, 0}, {8, 8}, nullptr) { }
bool isAlive() { return falling; }
void bringToLife()
{
setBitmap( &snowFlakeImage[random(8)][0] );
/* Set initial position in scaled coordinates */
scaled_position = { random(ssd1306_displayWidth() * 8), -8 * 8 };
/* Use some random speed */
speed = { random(-16, 16), random(4, 12) };
/* After countdown timer ticks to 0, change X direction */
timer = random(24, 48);
moveTo( scaled_position/8 );
falling = true;
}
void move()
{
scaled_position += speed;
timer--;
if (0 == timer)
{
/* Change movement direction */
speed.x = random(-16, 16);
timer = random(24, 48);
}
moveTo( scaled_position/8 );
if (y() >= static_cast<lcdint_t>(ssd1306_displayHeight()) )
{
falling = false;
}
}
private:
NanoPoint scaled_position;
NanoPoint speed;
uint8_t timer;
bool falling = false;
};
static const uint8_t maxCount = 20;
/* These are our snow flakes */
SnowFlake snowFlakes[maxCount];
bool onDraw()
{
engine.canvas.clear();
for (uint8_t i=0; i<maxCount; i++)
{
if (snowFlakes[i].isAlive())
{
snowFlakes[i].draw();
}
}
return true;
}
void setup()
{
ssd1306_128x64_i2c_init();
// ssd1331_96x64_spi_init(3,4,5);
// ssd1351_128x128_spi_init(3,4,5);
// il9163_128x128_spi_init(3,4,5);
engine.setFrameRate( 30 );
engine.begin();
engine.drawCallback( onDraw );
engine.canvas.setMode(CANVAS_MODE_TRANSPARENT);
engine.refresh();
}
void addSnowFlake()
{
for (uint8_t i=0; i<maxCount; i++)
{
if (!snowFlakes[i].isAlive())
{
snowFlakes[i].bringToLife();
break;
}
}
}
void moveSnowFlakes()
{
for (uint8_t i=0; i<maxCount; i++)
{
if (snowFlakes[i].isAlive())
{
snowFlakes[i].move();
}
}
}
static uint8_t globalTimer=3;
void loop()
{
if (!engine.nextFrame()) return;
if (0 == (--globalTimer))
{
/* Try to add new snowflake every ~ 90ms */
globalTimer = 3;
addSnowFlake();
}
moveSnowFlakes();
engine.display();
}