Skip to content

Commit

Permalink
Merge pull request #105 from t3knomanzer/rotary-half-step
Browse files Browse the repository at this point in the history
Rotary half step
  • Loading branch information
t3knomanzer authored Jul 31, 2020
2 parents b09f3ca + 9599c5c commit c9b33e8
Show file tree
Hide file tree
Showing 308 changed files with 76,430 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,16 @@ public async Task<IEnumerable<string>> RetrieveVersions()
if (release.Prerelease)
continue;

// Skip if there aren't any assets matching the target file extension.
if (!release.Assets.Any(o => o.Name.EndsWith(_targetExtension)))
continue;
foreach(var asset in release.Assets.Where(o => o.Name.EndsWith(_targetExtension)))
{
var name = asset.Name;
name = name.Replace(_targetExtension, string.Empty);
var suffix = name.Split('_');

var version = release.TagName;
var url = release.Assets.First(o => o.Name.EndsWith(_targetExtension)).BrowserDownloadUrl;
_downloadUrls.Add(version, url);
var version = $"{release.TagName} {(suffix.Length > 1 ? suffix.Last() : string.Empty)}";
var url = asset.BrowserDownloadUrl;
_downloadUrls.Add(version, url);
}
}

return _downloadUrls.Keys.ToList();
Expand Down
13 changes: 6 additions & 7 deletions Embedded/MaxMix/MaxMix.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@
//********************************************************
// *** INCLUDES
//********************************************************
// Third-party
#include <Arduino.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <Adafruit_NeoPixel.h>
#include <ButtonEvents.h>

#define HALF_STEP
#include <Rotary.h>
// Third-party
#include "src/Adafruit_GFX/Adafruit_GFX.h"
#include "src/Adafruit_NeoPixel/Adafruit_NeoPixel.h"
#include "src/Adafruit_SSD1306/Adafruit_SSD1306.h"
#include "src/ButtonEvents/ButtonEvents.h"
#include "src/Rotary/Rotary.h"

// Custom
#include "Config.h"
Expand Down
31 changes: 31 additions & 0 deletions Embedded/MaxMix/libraries/Adafruit_GFX/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Adafruit GFX Library # [![Build Status](https://travis-ci.com/adafruit/Adafruit-GFX-Library.svg?branch=master)](https://travis-ci.org/adafruit/Adafruit-GFX-Library)

This is the core graphics library for all our displays, providing a common set of graphics primitives (points, lines, circles, etc.). It needs to be paired with a hardware-specific library for each display device we carry (to handle the lower-level functions).

Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!

Written by Limor Fried/Ladyada for Adafruit Industries.
BSD license, check license.txt for more information.
All text above must be included in any redistribution.

Recent Arduino IDE releases include the Library Manager for easy installation. Otherwise, to download, click the DOWNLOAD ZIP button, uncompress and rename the uncompressed folder Adafruit_GFX. Confirm that the Adafruit_GFX folder contains Adafruit_GFX.cpp and Adafruit_GFX.h. Place the Adafruit_GFX library folder your ArduinoSketchFolder/Libraries/ folder. You may need to create the Libraries subfolder if its your first library. Restart the IDE.

# Useful Resources

- Image2Code: This is a handy Java GUI utility to convert a BMP file into the array code necessary to display the image with the drawBitmap function. Check out the code at ehubin's GitHub repository: https://github.com/ehubin/Adafruit-GFX-Library/tree/master/Img2Code

- drawXBitmap function: You can use the GIMP photo editor to save a .xbm file and use the array saved in the file to draw a bitmap with the drawXBitmap function. See the pull request here for more details: https://github.com/adafruit/Adafruit-GFX-Library/pull/31

- 'Fonts' folder contains bitmap fonts for use with recent (1.1 and later) Adafruit_GFX. To use a font in your Arduino sketch, \#include the corresponding .h file and pass address of GFXfont struct to setFont(). Pass NULL to revert to 'classic' fixed-space bitmap font.

- 'fontconvert' folder contains a command-line tool for converting TTF fonts to Adafruit_GFX header format.

---

### Roadmap

The PRIME DIRECTIVE is to maintain backward compatibility with existing Arduino sketches -- many are hosted elsewhere and don't track changes here, some are in print and can never be changed! This "little" library has grown organically over time and sometimes we paint ourselves into a design corner and just have to live with it or add ungainly workarounds.

Highly unlikely to merge any changes for additional or incompatible font formats (see Prime Directive above). There are already two formats and the code is quite bloaty there as it is (this also creates liabilities for tools and documentation). If you *must* have a more sophisticated font format, consider creating a fork with the features required for your project. For similar reasons, also unlikely to add any more bitmap formats, it's getting messy.

Please don't reformat code for the sake of reformatting code. The resulting large "visual diff" makes it impossible to untangle actual bug fixes from merely rearranged lines.
Loading

0 comments on commit c9b33e8

Please sign in to comment.