Arduino Nano: https://www.amazon.co.uk/gp/product/B015MGHH6Q/ref=oh_aui_detailpage_o09_s01?ie=UTF8&psc=1 9 Degrees of Freedom IMU: https://www.aliexpress.com/item/GY-85-BMP085-Sensor-Modules-9-Axis-Sensor-Module-ITG3205-ADXL345-HMC5883L-6DOF-9DOF-IMU-Sensor/1729723444.html?spm=2114.13010608.0.56.6vYhPq GPS-I2C Converter: https://www.amazon.co.uk/gp/product/B00O7JJ3J4/ref=oh_aui_detailpage_o00_s00?ie=UTF8&psc=1 Heli Kit: https://www.amazon.co.uk/Gartt-CopterX-Flybar-Version-Helicopter/dp/B016ZNXUUC/ref=sr_1_1?ie=UTF8&qid=1473673941&sr=8-1&keywords=copterx
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
Buy it: http://cpc.farnell.com/raspberry-pi/rpi2-modb-8gb-noobs/sbc-rpi-2-model-b8gb-noobs/dp/SC13795 |
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
TASK: [nsca | Install NSCA Agent] ********************************************* | |
ok: [localhost] | |
TASK: [nsca | Install NSCA Agent] ********************************************* | |
skipping: [localhost] | |
TASK: [nsca | Ensure that the "nagios" user exists] *************************** | |
ok: [localhost] | |
TASK: [nsca | Start and enable the NSCA Service] ****************************** |
Phone: 07950 890377
Email: [email protected]
Twitter: @proffalken
Github: github.com/proffalken github.com/mockingbirdconsulting
http://uk.rs-online.com/web/p/wlan-modules/8806821/ Radio Chip http://syncchannel.blogspot.co.uk/2016/06/lorawan-featherwing-for-adafruit-feather.html Breakout board for the above https://www.amazon.co.uk/Sourcingmap-Board-Female-Connector-Adapter/dp/B006Z95OEC/ SMA Connector https://www.amazon.co.uk/Eightwood-Rubber-Antenna-868MHz-870Mhz-radio/dp/B01HZAN7RK/ Antenna An Arduino (or compatible) of some sort to hook up to the lorawan featherwing
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
* Switch to AHCI mode so USB is detected | |
* Use UFEI Installer on USB stick | |
* Disk is on /dev/nvme0* | |
* Read https://aprescott.com/posts/dual-booting-windows-and-linux-with-encryption | |
* Resize C: from within windows based on http://www.disk-partition.com/articles/shrink-volume-not-enough-space-4348.html | |
* Reboot | |
* Use `gdisk` to create new partitions based on https://wiki.archlinux.org/index.php/Installation_guide and https://wiki.archlinux.org/index.php/Dm-crypt | |
* Install Arch | |
* Reboot |
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 jenkinsci/blueocean:latest | |
USER root | |
RUN apk add --no-cache --update \ | |
python \ | |
python-dev \ | |
py-pip \ | |
build-base \ | |
&& pip install virtualenv \ |
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
function Decoder(bytes, port) { | |
// Decode an uplink message from a buffer | |
// (array) of bytes to an object of fields. | |
var decoded = {}; | |
if (port === 10) { | |
decoded.pm25count = parseFloat((bytes[1] << 8) + "." + bytes[2]); | |
decoded.pm10count = parseFloat((bytes[3] << 8) + "." + bytes[4]); | |
} |