Skip to content

Commit cf77dac

Browse files
author
Andre Stefanov
committed
PlatformIO integration
1 parent 81e649a commit cf77dac

38 files changed

+215
-452
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.pio
2+
.vscode

Software/Arduino code/OpenAstroTracker/DayTime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "Utility.h"
1+
#include "Utility.hpp"
22
#include "DayTime.hpp"
33

44
///////////////////////////////////

Software/Arduino code/OpenAstroTracker/DayTime.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define _DAYTIME_HPP_
33

44
#include <Arduino.h>
5-
#include "Globals.h"
5+
#include "Globals.hpp"
66

77
// A class to handle hours, minutes, seconds in a unified manner, allowing
88
// addition of hours, minutes, seconds, other times and conversion to string.

Software/Arduino code/OpenAstroTracker/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "Globals.h"
1+
#include "Globals.hpp"
22
#include <EEPROM.h>
33

44
void EEPROMupdate(int loc, byte val)

Software/Arduino code/OpenAstroTracker/Globals.h renamed to Software/Arduino code/OpenAstroTracker/Globals.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef _GLOBALS_H_
2-
#define _GLOBALS_H_
1+
#ifndef _GLOBALS_HPP_
2+
#define _GLOBALS_HPP_
33

44
#include <Arduino.h>
55
#include <WString.h>

Software/Arduino code/OpenAstroTracker/InterruptCallback.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "InterruptCallback.h"
2-
#include "Utility.h"
1+
#include "InterruptCallback.hpp"
2+
#include "Utility.hpp"
33

44
//////////////////////////////////////
55
// This is an hardware-independent abstraction layer over

Software/Arduino code/OpenAstroTracker/InterruptCallback.h renamed to Software/Arduino code/OpenAstroTracker/InterruptCallback.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "Globals.h"
2+
#include "Globals.hpp"
33

44
//////////////////////////////////////
55
// This is an hardware-independent abstraction layer over

Software/Arduino code/OpenAstroTracker/LcdMenu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "Utility.h"
1+
#include "Utility.hpp"
22
#include "LcdMenu.hpp"
33

44
#ifndef HEADLESS_CLIENT

Software/Arduino code/OpenAstroTracker/LcdMenu.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#ifndef HEADLESS_CLIENT
66
#include <LiquidCrystal.h>
77
#endif
8-
#include "Globals.h"
8+
#include "Globals.hpp"
99

1010
// A single menu item (like RA, HEAT, POL, etc.)
1111
// The ID is just a number, it has no relevance for the order of the items

Software/Arduino code/OpenAstroTracker/MeadeCommandProcessor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "MeadeCommandProcessor.h"
2-
#include "Globals.h"
3-
#include "Utility.h"
1+
#include "MeadeCommandProcessor.hpp"
2+
#include "Globals.hpp"
3+
#include "Utility.hpp"
44
#include "WifiControl.hpp"
55

66
/////////////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)