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
sudo rpi-clone -f sda --exclude=/home/boss/GDrive | |
Destination disk partition /dev/sda1 is mounted on /media/RASPBIAN. | |
The clone cannot proceed unless it is unmounted. | |
Do you want to unmount /media/RASPBIAN? (yes/no): yes | |
Booted disk: mmcblk0 15.9GB Destination disk: sda 15.9GB | |
--------------------------------------------------------------------------- | |
Part Size FS Label Part Size FS Label | |
1 /boot/firmware 257.0M fat32 -- 1 14.8G fat32 -- |
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
[2023-03-31T07:56:20Z INFO neolink] Neolink 4fcaf4d538dc6e05434690bdf7f3a3bc22b077e3 release | |
[2023-03-31T07:56:20Z INFO neolink::utils] giardino: Connecting to camera at UID: 95270004YFGE16SE | |
[2023-03-31T07:56:22Z INFO neolink_core::bc_protocol] Relay success 95270004YFGE16SE at 35.180.129.86:51736 | |
[2023-03-31T07:56:22Z INFO neolink::utils] giardino: Logging in | |
[2023-03-31T07:56:24Z INFO neolink::utils] giardino: Connected and logged in | |
Error: Unable to set camera PIR state | |
Caused by: | |
Camera responded with Service Unavaliable | |
boss@SaltyRest:~/.node-red/assets $ export RUST_LOG=trace |
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
from __future__ import unicode_literals | |
import re | |
from setuptools import find_packages | |
from setuptools import setup | |
def get_version(filename): | |
content = open(filename).read() | |
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content)) |