This file contains 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
# Install bluez tools | |
# sudo apt-get install -y bluez-tools | |
# timeout 10 means it will scan the devices for 10 seconds | |
BT_DEVICE=08:07:20:73:63:2A | |
bt-device -l | |
bt-device -r ${BT_DEVICE} | |
timeout 10 bt-adapter -d |
This file contains 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
version: "3.7" | |
services: | |
mongodb: | |
container_name: mongo-tasker-container | |
image: mongo | |
restart: always | |
environment: | |
MONGO_INITDB_ROOT_USERNAME: root |
This file contains 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
1.) git clone https://github.com/kodizhuk/Salae-Logic-NEC-Analyzer.git | |
2.) Created a CMakeLists.txt file: | |
project(IR_analyzer) | |
cmake_minimum_required(VERSION 3.12) | |
file(GLOB SOURCES | |
"source*.h" |
This file contains 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
Raspbian lite os | |
https://www.youtube.com/watch?v=O4oVIsZJDs4 | |
Start by editing the wpa-supplicant config file: | |
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf | |
network={ | |
ssid="YOUR_NETWORK_SSID" | |
psk="WIFI_PASSWORD" |