├── .gitattributes ├── .github └── workflows │ └── tg-send.yml ├── LICENSE ├── README.md ├── docs ├── 1.main.md ├── 2.bot.md ├── 3.start.md ├── 4.updates.md ├── 5.send.md ├── 6.menu.md ├── 7.files.md └── README.md ├── examples ├── esp32cam-send │ ├── camera.h │ └── esp32cam-send.ino ├── inlineMenu │ └── inlineMenu.ino ├── minimal │ └── minimal.ino └── test │ ├── image_p.h │ ├── lorem_p.h │ └── test.ino ├── keywords.txt ├── library.properties └── src ├── FastBot2.h ├── FastBot2Client.h ├── FastBot2Client_class.h ├── bot_config.h └── core ├── EntryAccess.h ├── Fetcher.h ├── Multipart.h ├── api.cpp ├── api.h ├── core.h ├── core_class.cpp ├── core_class.h ├── getapi.py ├── http.h ├── packet.h ├── result.h ├── types ├── ChatRead.h ├── DocumentRead.h ├── File.h ├── ID.h ├── InlineMenu.h ├── Location.h ├── LocationRead.h ├── Menu.cpp ├── Menu.h ├── Message.cpp ├── Message.h ├── MessageEdit.h ├── MessageForward.h ├── MessageOriginRead.h ├── MessageRead.h ├── Message_class.h ├── MyCommands.h ├── QueryRead.h ├── Update.h └── UserRead.h └── updates.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/README.md -------------------------------------------------------------------------------- /docs/1.main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/docs/1.main.md -------------------------------------------------------------------------------- /docs/2.bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/docs/2.bot.md -------------------------------------------------------------------------------- /docs/3.start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/docs/3.start.md -------------------------------------------------------------------------------- /docs/4.updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/docs/4.updates.md -------------------------------------------------------------------------------- /docs/5.send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/docs/5.send.md -------------------------------------------------------------------------------- /docs/6.menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/docs/6.menu.md -------------------------------------------------------------------------------- /docs/7.files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/docs/7.files.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # Документация FastBot2 -------------------------------------------------------------------------------- /examples/esp32cam-send/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/examples/esp32cam-send/camera.h -------------------------------------------------------------------------------- /examples/esp32cam-send/esp32cam-send.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/examples/esp32cam-send/esp32cam-send.ino -------------------------------------------------------------------------------- /examples/inlineMenu/inlineMenu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/examples/inlineMenu/inlineMenu.ino -------------------------------------------------------------------------------- /examples/minimal/minimal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/examples/minimal/minimal.ino -------------------------------------------------------------------------------- /examples/test/image_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/examples/test/image_p.h -------------------------------------------------------------------------------- /examples/test/lorem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/examples/test/lorem_p.h -------------------------------------------------------------------------------- /examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/examples/test/test.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/library.properties -------------------------------------------------------------------------------- /src/FastBot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/FastBot2.h -------------------------------------------------------------------------------- /src/FastBot2Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/FastBot2Client.h -------------------------------------------------------------------------------- /src/FastBot2Client_class.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class FastBot2Client; -------------------------------------------------------------------------------- /src/bot_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/bot_config.h -------------------------------------------------------------------------------- /src/core/EntryAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/EntryAccess.h -------------------------------------------------------------------------------- /src/core/Fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/Fetcher.h -------------------------------------------------------------------------------- /src/core/Multipart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/Multipart.h -------------------------------------------------------------------------------- /src/core/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/api.cpp -------------------------------------------------------------------------------- /src/core/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/api.h -------------------------------------------------------------------------------- /src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/core.h -------------------------------------------------------------------------------- /src/core/core_class.cpp: -------------------------------------------------------------------------------- 1 | #include "core_class.h" 2 | 3 | namespace fb { 4 | 5 | Core* thisBot = nullptr; 6 | 7 | } -------------------------------------------------------------------------------- /src/core/core_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/core_class.h -------------------------------------------------------------------------------- /src/core/getapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/getapi.py -------------------------------------------------------------------------------- /src/core/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/http.h -------------------------------------------------------------------------------- /src/core/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/packet.h -------------------------------------------------------------------------------- /src/core/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/result.h -------------------------------------------------------------------------------- /src/core/types/ChatRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/ChatRead.h -------------------------------------------------------------------------------- /src/core/types/DocumentRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/DocumentRead.h -------------------------------------------------------------------------------- /src/core/types/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/File.h -------------------------------------------------------------------------------- /src/core/types/ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/ID.h -------------------------------------------------------------------------------- /src/core/types/InlineMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/InlineMenu.h -------------------------------------------------------------------------------- /src/core/types/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/Location.h -------------------------------------------------------------------------------- /src/core/types/LocationRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/LocationRead.h -------------------------------------------------------------------------------- /src/core/types/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/Menu.cpp -------------------------------------------------------------------------------- /src/core/types/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/Menu.h -------------------------------------------------------------------------------- /src/core/types/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/Message.cpp -------------------------------------------------------------------------------- /src/core/types/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/Message.h -------------------------------------------------------------------------------- /src/core/types/MessageEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/MessageEdit.h -------------------------------------------------------------------------------- /src/core/types/MessageForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/MessageForward.h -------------------------------------------------------------------------------- /src/core/types/MessageOriginRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/MessageOriginRead.h -------------------------------------------------------------------------------- /src/core/types/MessageRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/MessageRead.h -------------------------------------------------------------------------------- /src/core/types/Message_class.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace fb { 4 | class Message; 5 | } -------------------------------------------------------------------------------- /src/core/types/MyCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/MyCommands.h -------------------------------------------------------------------------------- /src/core/types/QueryRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/QueryRead.h -------------------------------------------------------------------------------- /src/core/types/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/Update.h -------------------------------------------------------------------------------- /src/core/types/UserRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/types/UserRead.h -------------------------------------------------------------------------------- /src/core/updates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/FastBot2/HEAD/src/core/updates.h --------------------------------------------------------------------------------