Move all source files to subdirectory to be less confusing for Arduino IDE

This commit is contained in:
John Stäck 2019-03-04 10:16:58 +01:00
parent 7e1db21883
commit e388248c7c
7 changed files with 0 additions and 0 deletions

19
NuEVI/name.c Normal file
View file

@ -0,0 +1,19 @@
// To give your project a unique name, this code must be
// placed into a .c file (its own tab). It can not be in
// a .cpp file or your main sketch (the .ino file).
#include "usb_names.h"
// Edit these lines to create your own name. The length must
// match the number of characters in your custom name.
#define MIDI_NAME {'N','u','E','V','I',' ','M','I','D','I'}
#define MIDI_NAME_LEN 10
// Do not change this part. This exact format is required by USB.
struct usb_string_descriptor_struct usb_string_product_name = {
2 + MIDI_NAME_LEN * 2,
3,
MIDI_NAME
};