ESP32 port of libssh
Submitted by Ewan on
After significant and long-standing demand, I am porting the libssh library to the ESP32 system-on-chip as an Arduino library.
Submitted by Ewan on
After significant and long-standing demand, I am porting the libssh library to the ESP32 system-on-chip as an Arduino library.
Submitted by Ewan on
Sorry, no more upgrades for this system There will not be any further Ubuntu releases for this system's 'i386' architecture. Updates for Ubuntu 18.04 will continue until April 2023.
This guide is for you if you've seen the above message and you want to upgrade your Ubuntu system to 20.04 LTS.
This brief HOWTO shows how to take a working 32 bit 18.04 installation and convert it into a 64 bit system. You will be able to keep all your programs, settings and data. Once converted to 64 bit you can plan the upgrade to 20.04 LTS.
Submitted by Ewan on
Submitted by Ewan on
Here is an Arduino library allowing you to write to all flash or EEPROM space with wear leveling. The library already supports multiple memory types (internal EEPROM, I2C and SPI) and can be extended very easily to support others. The memory space can be used as a space to store configuration data with wear leveling, or to read and write (at the same time) sensor data filling the whole memory space efficiently.
Submitted by Ewan on
A complete Arduino library for the MAX3100 serial UART/USART chip can be downloaded below. There have been many requests for an Arduino library for the MAX3100 external serial USART (UART) chip from Maxim Integrated. As an example of the minor changes needed to use the MAX3100's serial port instead of (or in addition to) the built in serial port, here is some sample code (note the lower case 's' is the only change needed to use the new serial port).
Submitted by Ewan on
A one stop shop for using the ATMEGA328P standalone at 8MHz or 1MHz clock speed including compiled bootloader. This is for use primarily on a breadboard, but also also directly on, say, a Uno R3 or Nano.
Submitted by Ewan on
There exists little practical information assisting with the experimentation of '595 shift registers. This article and below Arduino sketch aim to address this vacuum. The sketch simulates one or more (chained) 595 shift registers on the serial monitor while simultaneously driving the IC or ICs via the Arduino's pins. This allows concurrent theoretical and practical experimentation with the 74HC595 first-in-first-out (FIFO) shift register family.
Submitted by Ewan on
Ready-made QGIS stylesheets (QML) for OpenStreetMap are available for download. These were created and tested with QGIS version 2.2 on Debian GNU/Linux 7.
Submitted by Ewan on
Below are QGIS QML stylesheets for OS OpenData Meridian 2 layers. Ordnance Survey data has been available for a while for download as OS OpenData. Also provided are SLDs for ESRI. However these SLDs do not import correctly into QGIS.
Submitted by Ewan on
Efficiently synchronize copies of a large sparse file locally. I deal with a large amount of large sparse files because of virtualization and other technologies. Because of their size, often a small number of blocks have data and, of these, a small number of blocks are changed and need to be backed up. Using a log-based (snapshotting) file system on USB 2 as a backup device, I only want to write blocks if absolutely necessary.
So what's the solution? Some simple custom code that