This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### PSoCCreator ### | |
# Modified from https://www.gitignore.io/?templates=psoccreator | |
# You may need to add additional directories, e.g. CortexM3/ | |
# Project Settings | |
*.cywrk.* | |
*.cyprj.* | |
# Generated Assets and Resources | |
Debug/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to get "Application Shortcut" functionality on Chrome for Mac, as of January 2020: | |
1. Visit the web page you would like to turn into an application | |
2. Navigate to Settings > More Tools > Create Shortcut... | |
3. Give the app a name, make sure "Open as window" is enabled, and click Create | |
4. The folder Chrome Apps should open in finder. Drag the new app shortcut to the dock or another location for easy access | |
That's it! You can even quit the app (Cmd-Q) without closing other Chrome windows, as it acts like a separate Mac app. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Arduino Code for the 2017 NYC Holiday Window Display | |
// More info about this project: https://yeutterg.github.io/nyc-display-2017 | |
#include "FastLED.h" | |
#define BRIGHTNESS 255 | |
#define NUM_LEDS_PER_STRIP 100 | |
#define NUM_STRIPS 4 | |
#define NUM_LEDS NUM_STRIPS * NUM_LEDS_PER_STRIP | |
#define LED_START_PIN 30 |