Skip to content

Instantly share code, notes, and snippets.

@toozie21
toozie21 / TalkingSkull.h
Created June 12, 2023 17:22
Skippy and the Skulls Arduino Nano header file
#ifndef _TALKINGSKULL_H
#define _TALKINGSKULL_H
#define NOP __asm__ __volatile__ ("nop\n\t")
const char compile_date[] = __DATE__ " " __TIME__;
uint8_t song_total = 15;
char song_list[] = {'1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
@toozie21
toozie21 / TalkingSkull.ino
Last active June 12, 2023 17:22
Skippy and the Skulls Arduino Nano project file
#include <EEPROM.h>
#include <Wire.h>
#include <SPI.h>
#include <SD.h>
#include <Adafruit_PWMServoDriver.h>
#include <SoftwareSerial.h>
#include <DFMiniMp3.h>
#include "TalkingSkull.h"
#include <avr/pgmspace.h>
//https://github.com/arduino/Arduino/issues/8324#issuecomment-449172747