semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
defines.h
1#ifndef _include_h_
2#define _include_h_
3
4#include "utility/SME_JSON.h"
5//#include <Arduino.h>
6
7#define sme_accept "application/json"
8#define sme_contentType "application/json"
9#define sme_authType "Bearer "
10
11#define sme_wsEP "/service/ws"
12#define sme_wsClientEP "/wsclient"
13#define sme_wsHost "api.semilimes.net"
14#define sme_wsPort 443
15
16#define sme_httpsUrl "https://api.semilimes.net"
17
18#define sme_registerDevice "/registerDevice"
19#define sme_deviceClaimStatus "/deviceClaimStatus"
20#define sme_resetDevice "/resetDevice"
21
22#define sme_account_my "/account/my"
23#define sme_account_profile "/account/profile"
24#define sme_account_profile_update "/account/profile/update"
25#define sme_account_feed "/account/feed"
26#define sme_account_feed_post_add "/account/feed/post/add"
27#define sme_account_feed_post_update "/account/feed/post/update"
28#define sme_account_contacts "/account/contacts"
29
30#define sme_communication_channel_my "/communication/channel/my"
31#define sme_communication_channel "/communication/channel"
32#define sme_communication_channel_create "/communication/channel/create"
33#define sme_communication_channel_message "/communication/channel/message"
34#define sme_communication_channel_message_send "/communication/channel/message/send"
35#define sme_communication_channel_update "/communication/channel/message/update"
36#define sme_communication_channel_subscribe "/communication/channel/subscribe"
37#define sme_communication_channel_unsubscribe "/communication/channel/unsubscribe"
38#define sme_communication_bucket "/communication/bucket"
39#define sme_communication_bucket_update "/communication/bucket/update"
40#define sme_communication_bucket_like "/communication/bucket/like"
41#define sme_communication_bucket_unlike "/communication/bucket/unlike"
42#define sme_communication_p2p "/communication/p2p"
43#define sme_communication_p2p_message "/communication/p2p/message"
44#define sme_communication_p2p_message_send "/communication/p2p/message/send"
45#define sme_communication_p2p_message_update "/communication/p2p/message/update"
46#define sme_communication_p2p_message_reaction_send "/communication/p2p/message/reaction/send"
47#define sme_communication_p2p_message_reaction_remove "/communication/p2p/message/reaction/remove"
48#define sme_communication_p2p_message_reply "/communication/p2p/message/reply"
49#define sme_communication_p2p_signal_typing "/communication/p2p/signal/typing"
50#define sme_communication_groupchat "/communication/groupchat"
51#define sme_communication_groupchat_create "/communication/groupchat/create"
52#define sme_communication_groupchat_message "/communication/groupchat/message"
53#define sme_communication_groupchat_invite "/communication/groupchat/invite"
54#define sme_communication_groupchat_message_send "/communication/groupchat/message/send"
55#define sme_communication_groupchat_message_update "/communication/groupchat/message/update"
56#define sme_communication_groupchat_message_reaction_send "/communication/groupchat/message/reaction/send"
57#define sme_communication_groupchat_message_reaction_remove "/communication/groupchat/message/reaction/remove"
58#define sme_communication_groupchat_message_reply "/communication/groupchat/message/reply"
59#define sme_communication_groupchat_signal_typing "/communication/groupchat/signal/typing"
60
61#endif;