- 1-2 hours of your life
- build envirment for the Kernel
- device with Ubuntu and nvflash
- AC100
- mini-usb cabel
- usb-stick >512MB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 436c2092cea8a503229be9dba37c618cd19784f9 Mon Sep 17 00:00:00 2001 | |
From: Alexey Andreyev <[email protected]> | |
Date: Thu, 15 Mar 2018 22:22:27 +0300 | |
Subject: [PATCH] boost asio 1-66 build issue patch | |
--- | |
PKGBUILD | 10 ++++++++-- | |
boost-asio-1-66.patch | 16 ++++++++++++++++ | |
2 files changed, 24 insertions(+), 2 deletions(-) | |
create mode 100644 boost-asio-1-66.patch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "2.1.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 8bfe4076109f3f6b31cacb5262dd5c282cccb639 Mon Sep 17 00:00:00 2001 | |
From: eegorov <[email protected]> | |
Date: Mon, 7 Aug 2017 17:57:34 +0600 | |
Subject: [PATCH] New build option: without GTK and appindicator Signed-off-by: | |
Egor Y. Egorov <[email protected]> (github: eegorov) | |
--- | |
.travis.yml | 1 + | |
.travis/build.sh | 4 +++ | |
.../platform/linux/file_utilities_linux.cpp | 10 ++++++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Alexey Andreyev <[email protected]> | |
pkgname=qt-bt-le-to-mqtt-systemd | |
pkgver=9 | |
pkgrel=1 | |
pkgdesc="Systemd startup script for qt-bt-le-to-mqtt lowenrgyscanner" | |
arch=('any') | |
license=('GPL3') | |
depends=('qt-bt-le-to-mqtt') | |
source=('https://gist.githubusercontent.com/a-andreyev/54066d8ba9fe0ebb3f0be5ec32dd2c61/raw/c3b726cfab9ff8923ba7c53bafc58444be839056/heartbeat.service' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=BLE MQTT Scanner | |
After=network.target | |
Requires=network.target | |
[Service] | |
Restart=always | |
ExecStart=/usr/bin/lowenergyscanner | |
User=root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Alexey Andreyev <[email protected]> | |
pkgname=qt-bt-le-to-mqtt-git | |
scrname=scanner | |
pkgver=1 | |
pkgrel=10 | |
pkgdesc="qt-bt-le-to-mqtt" | |
arch=('armv7h' 'i686' 'x86_64' 'aarch64') | |
url="https://gitlab.com/aa13q/qt-ble-mqtt-scanner" | |
license=('GPL3') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Alexey Andreyev <[email protected]> | |
pkgname=libblepp-git | |
pkgver=r119.f2e9a24 | |
pkgrel=1 | |
pkgdesc="Modern clean C++ Bluetooth Low Energy on Linux without the Bluez DBUS API" | |
arch=('armv7h' 'i686' 'x86_64' 'aarch64') | |
url="https://github.com/edrosten/${pkgname%-git}" | |
license=('GPL2') | |
depends=('bluez' 'boost' 'bluez-libs') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# iBeacon Scan by Arda Karaduman | |
# + MQTT pub by Alexey Andreyev ([email protected]) | |
function parse_ib_uuid { | |
UUID=`echo $1 | sed 's/^.\{69\}\(.\{47\}\).*$/\1/'` | |
UUID=`echo $UUID | sed -e 's/\ //g' -e 's/^\(.\{8\}\)\(.\{4\}\)\(.\{4\}\)\(.\{4\}\)\(.\{12\}\)$/\1-\2-\3-\4-\5/'` | |
} | |
function parse_ib_major { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> | |
#include <ESP8266mDNS.h> | |
#include "ESP8266WiFi.h" | |
#include "WiFiUdp.h" | |
WiFiUDP Udp; | |
unsigned int localUdpPort = 55555; |