Skip to content

Instantly share code, notes, and snippets.

@Mictronics
Mictronics / readsb-mqtt-stats.py
Last active January 22, 2022 10:06
Reads statistics from readsb stats.json or stats.pb and forwards to homeassistant (HASS) via MQTT broker.
View readsb-mqtt-stats.py
#! /usr/bin/python3
# Reads statistics from readsb stats.json or stats.pb and forwards to homeassistant (HASS)
# via MQTT broker.
#
# Dependencies:
# pip3 install paho-mqtt
# pip3 install watchdog
# https://github.com/protocolbuffers/protobuf
@Mictronics
Mictronics / readsb-mqtt-stats-json.py
Last active January 22, 2022 10:07
Reads statistics from readsb stats.json and forwards to homeassistant (HASS) via MQTT broker.
View readsb-mqtt-stats-json.py
#! /usr/bin/python3
# Reads statistics from readsb stats.json and forwards to homeassistant (HASS)
# via MQTT broker.
#
# Dependencies:
# pip3 install paho-mqtt
# pip3 install watchdog
import sys
@Mictronics
Mictronics / sndway_control2.ino
Created July 23, 2018 08:52
Controls and reads actual measured distance from LCD bus of a Sndway SW-A40 laser distance meter. Improved version not using Arduino delay that causes random problems with serial interface.
View sndway_control2.ino
/**
* Controls and reads actual measured distance from LCD bus of a Sndway SW-A40 laser distance meter.
* Improved version not using Arduino delay that causes random problems with serial interface.
*
* Serial control characters:
*
* ? Return identifier string.
* c Clears measurement results and turns off laser.
* Can be used as keep alive command to prevent auto power off after 150s.
* M Turns on device when off and triggers a measurement.
@Mictronics
Mictronics / main.c
Last active March 21, 2018 20:29
Creates sinus and cosinus lookup tables for IQ signal generation for AD9361 (ADALM-Pluto) simulating TX channel settings.
View main.c
/*
* Creates sinus and cosinus lookup tables for IQ signal generation
* for AD9361 (ADALM-Pluto) simulating TX channel settings.
*
* channel_convert_inverse Converts I or Q sample from host format into hardware format.
* channel_convert Converts I or Q sample from hardware format into host format.
*
* See https://github.com/analogdevicesinc/libiio/blob/master/channel.c
*
*/
@Mictronics
Mictronics / sndway_control.ino
Last active February 26, 2018 18:37
Controls and reads actual measured distance from LCD bus of a Sndway SW-A40 laser distance meter.
View sndway_control.ino
/**
* Controls and reads actual measured distance from LCD bus of a Sndway SW-A40 laser distance meter.
*
* Serial control characters:
*
* ? Return identifier string.
* c Clears measurement results and turns off laser.
* Can be used as keep alive command to prevent auto power off after 150s.
* M Turns on device when off and triggers a measurement.
* S Start continuous measurement mode. Device must be turned on prior to this command.
@Mictronics
Mictronics / sndway_lcd_logger.ino
Last active February 24, 2018 19:10
Log SPI bus from LCD of a Sndway SW-A40 laser distance meter.
View sndway_lcd_logger.ino
/**
* Log SPI bus from LCD of a Sndway SW-A40 laser distance meter.
*
* Developed and tested on Arduino Mini 328P@16MHz.
* Requires circular buffer library from https://github.com/rlogiacco/CircularBuffer
* See https://www.mictronics.de/2018/02/laser-distance-meter-hack/
* Mictronics 2018 @ www.mictronics.de
*/
#include <CircularBuffer.h>
@Mictronics
Mictronics / sndway_simple_readout.ino
Last active April 4, 2023 06:19
Readout distance from a Sndway Laser Distance Meter SW-A40 with Arduino Mini
View sndway_simple_readout.ino
/**
* Reading actual measured distance from LCD of a Sndway SW-A40 laser distance meter.
*
* Developed and tested on Arduino Mini 328P@16MHz.
* See https://www.mictronics.de/2018/02/laser-distance-meter-hack/
* Mictronics 2018 @ www.mictronics.de
*/
/**
* Pin connection to LCD SPI bus.