MCP2221x – USB 2.0 to I2C/UART Protocol Converter with GPIO

April 2, 2023

The MCP2221x is used to allow a host computer to communicate with hardward via USB. The interface chip does not require any onboard logic to provide a bidirectional UART, and I2C interface. Using the appropriate host driver software to communicate to the chip, you can configure the remaining 4 GPIO pins as up to three 10-bit ADCs, single… Read More »

Remove Misbehaving Visual Studio VSIX Extension by Force

February 27, 2023

I have been working with an extension from a software company that I could not uninstall by going through the usual Visual Studio Extensions ->Manage Extensions -> Installed screen. Ultimately I determined that the extension had a bug in the uninstaller. Face it – how much does an uninstaller get tested anyway? I followed the instructions in many… Read More »

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 »