MBee Arduino library
MB-ZigBee.h
1 /* "Системы модули и компоненты" ("СМК"). 2020. Москва.
2 Библиотека MBee-Arduino.
3 Распространяется свободно. Надеемся, что программные продукты, созданные
4 с помощью данной библиотеки будут полезными, однако никакие гарантии, явные или
5 подразумеваемые не предоставляются.
6 
7 The MIT License(MIT)
8 
9 MBee-Arduino Library.
10 Copyright © 2020 Systems, modules and components. Moscow. Russia.
11 
12 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
13 documentation files(the "Software"), to deal in the Software without restriction, including without limitation
14 the rights to use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of the Software,
15 and to permit persons to whom the Software is furnished to do so, subject to the following conditions :
16 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR
19 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 
22 Code adapted from XBee-Arduino library XBee.h. Copyright info below.
23 * @file XBee.h
24 * @author Andrew Rapp
25 * @license This project is released under the GNU License
26 * @copyright Copyright (c) 2009 Andrew Rapp. All rights reserved
27 * @date 2009
28 * @brief Interface to the wireless XBee modules
29 */
30 
31 #ifndef MB_ZigBee_h
32 #define MB_ZigBee_h
33 
37 class MB_ZigBee : public MBee2400
38 {
39  public:
40  MB_ZigBee();
41  void readPacket();
42  private:
43  uint8_t test;
44 };
45 
46 #endif //MB_ZigBee_h
Базовый класс для работы с модулями диапазона 2,4 ГГц.
Definition: MBee.h:190
void readPacket()
Чтение всех байт, имеющихся в приемном буфере UART.
Definition: MB-ZigBee.cpp:44
Класс для проекта MB-ZigBee диапазона 2.4 ГГц.
Definition: MB-ZigBee.h:37