Skip to content

Commit 6b3a700

Browse files
authored
Update and rename TapToLaunchApi.cpp to ZaparooLaunchApi.cpp
1 parent fdce5fa commit 6b3a700

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

TapToLaunchApi.cpp renamed to ZaparooLaunchApi.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
#include <ArduinoWebsockets.h>
44
#include <UUID.h>
55
#include <atomic>
6-
#include "TapToLaunchApi.h"
6+
#include "ZaparooLaunchApi.h"
77

88
using namespace websockets;
99

1010
String defaultValue={};
1111

12-
TapToLaunchApi::TapToLaunchApi(){}
12+
ZaparooLaunchApi::ZaparooLaunchApi(){}
1313

14-
int TapToLaunchApi::launch(const String& content){
14+
int ZaparooLaunchApi::launch(const String& content){
1515
return launch(content, defaultValue);
1616
}
1717

18-
int TapToLaunchApi::launch(const String& content, const String& uid){
18+
int ZaparooLaunchApi::launch(const String& content, const String& uid){
1919
WebsocketsClient client;
2020
lastError.store(0);
2121
complete.store(false);
@@ -57,6 +57,6 @@ int TapToLaunchApi::launch(const String& content, const String& uid){
5757
return lastError.load();
5858
}
5959

60-
int TapToLaunchApi::launchUid(const String& uid){
60+
int ZaparooLaunchApi::launchUid(const String& uid){
6161
return launch(defaultValue, uid);
62-
}
62+
}

0 commit comments

Comments
 (0)