mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Updating wiring firmware to version 0006.
This commit is contained in:
@ -1,51 +1,55 @@
|
||||
/*
|
||||
Matrix.h - Max7219 LED Matrix library file for Wiring
|
||||
Part of the Wiring project - http://wiring.org.co
|
||||
Matrix.h - Max7219 LED Matrix library for Arduino & Wiring
|
||||
Copyright (c) 2006 Nicholas Zambetti. All right reserved.
|
||||
|
||||
Copyright (c) 2004-2005 Hernando Barragan
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
Max7219 LED Matrix library by Nicholas Zambetti
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
|
||||
#ifndef Matrix_h
|
||||
#define Matrix_h
|
||||
|
||||
#include <inttypes.h>
|
||||
// include core Wiring API
|
||||
#include "WProgram.h"
|
||||
|
||||
// declare other libraries depended on (if any)
|
||||
class Sprite;
|
||||
|
||||
class Matrix
|
||||
{
|
||||
private:
|
||||
uint8_t _pinClock;
|
||||
uint8_t _pinLoad;
|
||||
uint8_t _pinData;
|
||||
byte _pinData;
|
||||
byte _pinClock;
|
||||
byte _pinLoad;
|
||||
|
||||
uint8_t _screenBuffer[8];
|
||||
byte* _buffer;
|
||||
byte _screens;
|
||||
byte _maximumX;
|
||||
|
||||
void putByte(uint8_t);
|
||||
void putByte(byte);
|
||||
void setRegister(byte, byte);
|
||||
void syncRow(int);
|
||||
|
||||
void setScanLimit(byte);
|
||||
|
||||
void buffer(int, int, byte);
|
||||
public:
|
||||
Matrix(uint8_t, uint8_t, uint8_t);
|
||||
void set(uint8_t, uint8_t);
|
||||
void setAll(uint8_t);
|
||||
void setScanLimit(uint8_t);
|
||||
void setIntensity(uint8_t);
|
||||
void storePixel(uint8_t, uint8_t, uint8_t);
|
||||
void updatePixels(void);
|
||||
Matrix(byte, byte, byte, byte = 1);
|
||||
void setBrightness(byte);
|
||||
void write(int, int, byte);
|
||||
void write(int, int, Sprite);
|
||||
void clear(void);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user