Kabuki Starship / Mbed 2 deprecated GHVentilator

Dependencies:   mbed SickBayTek

Revision:
9:256989faeb3b
diff -r fa5cc1397510 -r 256989faeb3b GHVentilatorTargetArduino.hpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GHVentilatorTargetArduino.hpp	Fri Apr 10 11:56:58 2020 +0000
@@ -0,0 +1,22 @@
+/** Gravity Hookah Ventilator @version 0.x
+@link    https://github.com/KabukiStarship/SickBay.git
+@file    /GHVentilatorTargetArduino.hpp
+@author  Cale McCollough <https://cale-mccollough.github.io>
+@license Copyright 2020 (C) Kabuki Starship <kabukistarship.com>.
+This Source Code Form is subject to the terms of the Mozilla Public License, 
+v. 2.0. If a copy of the MPL was not distributed with this file, you can obtain 
+one at <https://mozilla.org/MPL/2.0/>. */
+#pragma once
+#ifndef GHVentilatorTargetArduino
+#define GHVentilatorTargetArduino
+#include "GHVentilator.h"
+#include <Wire.h>
+namespace SickBay {
+
+int GHVentilatorRun(){
+  Wire Bus(A4, A5);
+  char ChamberAddress = BMP280SlaveAddressDefault;
+  return 0;
+}
+} //< namespace SickBay
+#endif