Lab_interaccio/2016/BOB_FINAL/HMC6352.h

37 lines
947 B
C
Raw Normal View History

2025-02-25 21:29:42 +01:00
/*
* HMC6352.h
*
* Copyright (c) 2009 Ruben Laguna <ruben.laguna at gmail.com>. All rights reserved.
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef HMC6352_H
#define HMC6352_H
class HMC6352Class
{
public:
int GetHeading();
void Wake();
void Sleep();
private:
};
extern HMC6352Class HMC6352;
#endif