V3.0: Update libraries to latest version

This commit is contained in:
sanni 2019-03-22 22:47:59 +01:00
parent eee9b165a0
commit 79c6877fce
7 changed files with 10 additions and 11 deletions

View File

@ -2,15 +2,15 @@
Cartridge Reader for Arduino Mega2560 Cartridge Reader for Arduino Mega2560
Author: sanni Author: sanni
Date: 01-03-2019 Date: 22-03-2019
Version: 2.9 Version: 3.0
SD lib: https://github.com/greiman/SdFat SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/adafruit/Adafruit_SSD1306 LCD lib: https://github.com/adafruit/Adafruit_SSD1306
Clockgen: https://github.com/etherkit/Si5351Arduino Clockgen: https://github.com/etherkit/Si5351Arduino
RGB Tools lib: https://github.com/joushx/Arduino-RGB-Tools RGB Tools lib: https://github.com/joushx/Arduino-RGB-Tools
Compiled with Arduino 1.8.8 Compiled with Arduino 1.8.9
Thanks to: Thanks to:
MichlK - ROM-Reader for Super Nintendo MichlK - ROM-Reader for Super Nintendo
@ -37,7 +37,7 @@
vogelfreiheit - N64 flashram fix vogelfreiheit - N64 flashram fix
**********************************************************************************/ **********************************************************************************/
char ver[5] = "2.9"; char ver[5] = "3.0";
/****************************************** /******************************************
Define Starting Point Define Starting Point
@ -89,12 +89,11 @@ boolean n64crc = 1;
// Graphic I2C LCD // Graphic I2C LCD
#include <Adafruit_GFX.h> #include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h> #include <Adafruit_SSD1306.h>
#define OLED_RESET 4 #define SCREEN_WIDTH 128 // OLED display width, in pixels
Adafruit_SSD1306 display(OLED_RESET); #define SCREEN_HEIGHT 64 // OLED display height, in pixels
// Check if Adafruit_SSD1306.h was setup for 128x64 // Declaration for an SSD1306 display connected to I2C (SDA, SCL pins)
#if (SSD1306_LCDHEIGHT != 64) #define OLED_RESET 4 // Reset pin # (or -1 if sharing Arduino reset pin)
#error("Incorrect height defined in Adafruit_SSD1306.h"); Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
#endif
// Adafruit Clock Generator // Adafruit Clock Generator
#include <si5351.h> #include <si5351.h>

Binary file not shown.

View File

@ -2,7 +2,7 @@ Unzip and copy those into your Arduino library folder e.g. C:\Users\sanni\Docume
You can also get the latest versions from their respective github: You can also get the latest versions from their respective github:
SD lib: https://github.com/greiman/SdFat SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/adafruit/Adafruit_SSD1306 (change display size to SSD1306_128_64 in header file) LCD lib: https://github.com/adafruit/Adafruit_SSD1306
GFX Lib: https://github.com/adafruit/Adafruit-GFX-Library GFX Lib: https://github.com/adafruit/Adafruit-GFX-Library
RGB Tools lib: https://github.com/joushx/Arduino-RGB-Tools RGB Tools lib: https://github.com/joushx/Arduino-RGB-Tools
SI5351 lib: https://github.com/etherkit/Si5351Arduino SI5351 lib: https://github.com/etherkit/Si5351Arduino

Binary file not shown.

Binary file not shown.