Linux locate, which and find Commands

February 28, 2023

All three commands allow the user to find files on their system. Each has different strength. locate Command The locate command (man page) is very fast since it builds a database for file searches and doesn’t have to walk all the directory trees every time. It does require an occasional maintenance update command but it is not a… Read More »

Ubuntu Cheatsheet

February 28, 2023

Official Linux Documentation Linux commands and an enormous amount of information on the operation system can be found at a Linux Documentation site. This also includes the ebook Dive Into Python and other material. For my desktop, the Ubuntu distro has its own help. Upgrade system packages with “apt” “apt” is primarily designed for user interaction on the… Read More »

ESP8266 System on Chip

July 4, 2024

The ESP8266 is a System on Chip (SoC), manufactured by the Chinese company Espressif. The central processor is a Tensilica L106 32-bit microcontroller unit (MCU) and a Wi-Fi transceiver. It has 11 GPIO pins and an analog input also. Note that the ESP8266 chip itself has 17 GPIO pins, but 6 of these pins (6-11) are used for communication with the on-board flash memory chip.… Read More »

ESP-12E and ESP-12F

November 29, 2024

Some of the sites for information on the ESP3266 line of processors integrated into PCBs is Elecrow (site may not work), Utmel Electronics and Electronics Hub. This excerpt compares and contrasts the devices. Other modules specifications at Ai-Thinker Technology. Good source for pin functionality and tutorials at Random Nerd Tutorials. ESP8266 is a low-cost and high-performance wireless SOC,… Read More »

Notable Datasheet Links

April 3, 2023

Datasheets for items I have used in projects for quick reference. ICs AT24C32 – Atmel 2-Wire (I2C) Serial EEPROM, 4096/8192 8-bit words (Module using part) DS3231 – Extremely Accurate (I2C) RTC/TCXO/Crystal (Module using part)

WorldTimeAPI

March 13, 2023

As the website says – WorldTimeAPI is a simple web service which returns the current local time for a given timezone as either plain-text or JSON. This is a great site to get the current time/date in order to keep your IoT clock accurate. It is not intended to be used for commercial applications. The API can go… Read More »