Skip to content

Commit

Permalink
Increase ver
Browse files Browse the repository at this point in the history
  • Loading branch information
vovagorodok committed Mar 19, 2024
1 parent b0e9a13 commit e7890c9
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions examples/basic/basic.ino.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 1 "/tmp/tmp4oia75od"
#include <Arduino.h>
# 1 "/home/tsiselsk/Projects/private/ArduinoBleChess/examples/basic/basic.ino"
#include <Arduino.h>
#include <ArduinoBleChess.h>
#include "../MyPeripheral.h"

MyPeripheral peripheral{};
void setup();
void loop();
#line 7 "/home/tsiselsk/Projects/private/ArduinoBleChess/examples/basic/basic.ino"
void setup() {
Serial.begin(115200);
while (!Serial);

if (!ArduinoBleChess.begin("Arduino Ble Chess", peripheral))
Serial.println("ble initialization error");
}

void loop() {
#ifndef USE_NIM_BLE_ARDUINO_LIB
BLE.poll();
#endif
peripheral.checkPeripheralMove();
}
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ArduinoBleChess",
"version": "0.1.0",
"version": "0.1.1",
"description": "Bluetooth low energy (BLE) library for communication via CECP chess protocol",
"keywords": "BLE, chess, bluetooth",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=vovagorodok_ArduinoBleChess
version=0.1.0
version=0.1.1
author=vovagorodok
maintainer=vovagorodok <[email protected]>
sentence=Bluetooth low energy (BLE) library for communication via CECP chess protocol.
Expand Down

0 comments on commit e7890c9

Please sign in to comment.