mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-04-28 15:49:02 -07:00
37 lines
614 B
C++
37 lines
614 B
C++
/*
|
|
Copyright (C) 2011 J. Coliz <maniacbug@ymail.com>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
version 2 as published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __GLOBALS_H__
|
|
#define __GLOBALS_H__
|
|
|
|
// STL headers
|
|
// C headers
|
|
// Framework headers
|
|
// Library headers
|
|
// Project headers
|
|
|
|
class RF24;
|
|
class RF24Network;
|
|
|
|
extern RF24 radio;
|
|
extern RF24Network network;
|
|
|
|
/**
|
|
* Example for how classes should be declared
|
|
*/
|
|
|
|
class Template
|
|
{
|
|
private:
|
|
protected:
|
|
public:
|
|
};
|
|
|
|
#endif // __GLOBALS_H__
|
|
// vim:cin:ai:sts=2 sw=2 ft=cpp
|