Skip to content

Instantly share code, notes, and snippets.

View a-andreyev's full-sized avatar
🕊️

Alexey Andreyev a-andreyev

🕊️
View GitHub Profile
From 436c2092cea8a503229be9dba37c618cd19784f9 Mon Sep 17 00:00:00 2001
From: Alexey Andreyev <aa13q@ya.ru>
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
From 8bfe4076109f3f6b31cacb5262dd5c282cccb639 Mon Sep 17 00:00:00 2001
From: eegorov <egor.y.egorov@gmail.com>
Date: Mon, 7 Aug 2017 17:57:34 +0600
Subject: [PATCH] New build option: without GTK and appindicator Signed-off-by:
Egor Y. Egorov <egor.y.egorov@gmail.com> (github: eegorov)
---
.travis.yml | 1 +
.travis/build.sh | 4 +++
.../platform/linux/file_utilities_linux.cpp | 10 ++++++
@a-andreyev
a-andreyev / PKGBUILD
Last active October 4, 2017 10:56
qt-bt-le-to-mqtt systemd
# Maintainer: Alexey Andreyev <aa13q@ya.ru>
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'
@a-andreyev
a-andreyev / lowenergyscanner.service
Last active October 4, 2017 10:48
qt-bt-le-to-mqtt systemd scanner service
[Unit]
Description=BLE MQTT Scanner
After=network.target
Requires=network.target
[Service]
Restart=always
ExecStart=/usr/bin/lowenergyscanner
User=root
@a-andreyev
a-andreyev / PKGBUILD
Last active December 14, 2020 23:01
qt-bt-le-to-mqtt
# Maintainer: Alexey Andreyev <aa13q@ya.ru>
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')
# Maintainer: Alexey Andreyev <aa13q@ya.ru>
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')
@a-andreyev
a-andreyev / ac100-kernel.md
Created June 20, 2017 15:01 — forked from Nokius/ac100-kernel.md
ARCH LINUX WITH MAINLINE KERNEL FOR TOSHIBA AC100 [paz00 / dynabookaz]

ARCH LINUX WITH MAINLINE KERNEL FOR TOSHIBA AC100

all u need

  • 1-2 hours of your life
  • build envirment for the Kernel
  • device with Ubuntu and nvflash
  • AC100
  • mini-usb cabel
  • usb-stick >512MB
@a-andreyev
a-andreyev / ibeacon_scan.sh
Last active June 21, 2017 12:56 — forked from c0ze/ibeacon_scan.sh
A bash script to parse ibeacon packets
#!/bin/bash
# iBeacon Scan by Arda Karaduman
# + MQTT pub by Alexey Andreyev (aa13q@ya.ru)
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 {
@a-andreyev
a-andreyev / example.ino
Created June 9, 2017 13:08
PERCCOM2017
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include "ESP8266WiFi.h"
#include "WiFiUdp.h"
WiFiUDP Udp;
unsigned int localUdpPort = 55555;