initial commit

This commit is contained in:
Dan Priece
2026-05-19 09:15:34 -04:00
commit f4201b974b
21 changed files with 2130 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#ifndef ProjectileProfile_H
#define ProjectileProfile_H
#include <Arduino.h>
class ProjectileProfile {
public:
enum ProjectileType{
PELLET,
SLUG
};
// Constructor: Called when a ProjectileProfile object is created
ProjectileProfile();
ProjectileProfile(String name, ProjectileType type, float caliber, float weight);
String getName();
float getWeight();
String getType();
float getCaliber();
private:
char _name[50];
float _caliber;
float _weight;
ProjectileType _type;
};
#endif