Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: GHVentilatorArduino.hpp
- Revision:
- 10:09fe2b1474bf
- Parent:
- 9:256989faeb3b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GHVentilatorArduino.hpp Sat Apr 11 08:48:28 2020 +0000 @@ -0,0 +1,24 @@ +/** Gravity Hookah Ventilator @version 0.x +@link https://github.com/KabukiStarship/SickBay.git +@file /SBVentilator/Firmware/SBVentilatorArduino.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 SBVentilatorArduino +#define SBVentilatorArduino +#include "_KabukiTek.hpp" +#include "BMP280.hpp" +#include "SBVentilator.hpp" +#include <Wire.h> +namespace SickBay { + +int GHVentilatorRun(){ + Wire Bus(A4, A5); + char ChamberAddress = BMP280SlaveAddressDefault; + return 0; +} +} //< namespace SickBay +#endif