Skip to content

Instantly share code, notes, and snippets.

View jeremylindsayni's full-sized avatar

Jeremy Lindsay jeremylindsayni

View GitHub Profile
@jeremylindsayni
jeremylindsayni / PWM_Test_Sketch.ino
Created October 31, 2017 20:47
Sketch to demonstrate PWM for AZ3166
int GREEN_PWM_PIN_PB3 = 19; // <- Works, green light pulses
int RED_PWM_PIN_PB4 = 20; // <- Doesn't work for me
int BLUE_PWM_PIN_PC7 = 39; // <- Doesn't work for me
void setup() {
}
void loop() {
@jeremylindsayni
jeremylindsayni / build.cake
Last active November 28, 2017 05:56
Cake file to manage creation and deployment of a UWP application.
#tool nuget:?package=NUnit.ConsoleRunner&version=3.4.0
//////////////////////////////////////////////////////////////////////
// SETUP CUSTOM TOOL
//////////////////////////////////////////////////////////////////////
Setup(context => {
context.Tools.RegisterFile(@"C:\Program Files (x86)\Windows Kits\10\bin\x86\WinAppDeployCmd.exe");
});