Kabuki Starship / Mbed 2 deprecated mbedBug

Dependencies:   mbed

Committer:
kabukistarship
Date:
Thu Apr 09 22:40:13 2020 +0000
Revision:
6:02df5c1108f1
Parent:
2:aa9a1377aa0d
Renamed StatusLED to StatusIndicator.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kabukistarship 0:08d36e94c961 1 /** mbedBug @version 0.x
kabukistarship 0:08d36e94c961 2 @link https://github.com/KabukiStarship/mbedbug.git
kabukistarship 0:08d36e94c961 3 @file /morse_code.h
kabukistarship 0:08d36e94c961 4 @author Cale McCollough <https://cale-mccollough.github.io>
kabukistarship 0:08d36e94c961 5 @license Copyright 2016-20 (C) Kabuki Starship <kabukistarship.com>; all rights
kabukistarship 0:08d36e94c961 6 reserved (R). This Source Code Form is subject to the terms of the Mozilla
kabukistarship 0:08d36e94c961 7 Public License, v. 2.0. If a copy of the MPL was not distributed with this file,
kabukistarship 0:08d36e94c961 8 You can obtain one at <https://mozilla.org/MPL/2.0/>. */
kabukistarship 0:08d36e94c961 9 #pragma once
kabukistarship 6:02df5c1108f1 10 #ifndef MbedBugMorseCodeDecl
kabukistarship 6:02df5c1108f1 11 #define MbedBugMorseCodeDecl
kabukistarship 6:02df5c1108f1 12 namespace mbedBug {
kabukistarship 0:08d36e94c961 13
kabukistarship 0:08d36e94c961 14 /* Gets the Morse code for the given char. */
kabukistarship 0:08d36e94c961 15 const char* CodeMorseEncode (char Value);
kabukistarship 0:08d36e94c961 16
kabukistarship 6:02df5c1108f1 17 } //< namespace mbedBug
kabukistarship 0:08d36e94c961 18 #endif