Seeking Bespoke Technology Solutions?
Are You Ready to Transform Your Ideas into Innovations?
Contact me today to discover how personalized, high-end tech solutions can meet your unique requirements.
jamie@jamiestarling.com
Search The Site
Explore
Explore By Topic
I
M
P
T
X
Z
I
M
P
T
X
Z
Blog Picks
Making Music with PIC10F322 : Using XC8 for Sound Generation
Making Music with PIC10F322 : Twinkle Twinkle Little StarCreating the MelodySteps to Create the MelodyThe Circuit:The Code:Have a Project or Idea!?Seeking Bespoke Technology Solutions?jamie@jamiestarling.com Making Music with PIC10F322 : Twinkle Twinkle Little Star...
Sound Generation with PIC10F322 NCO and XC8: Emulating the IBM PC/XT Beep
Sound Generation with PIC10F322 NCO and XC8: Emulating the IBM PC/XT BeepThe IBM PC/XT BeepUnderstanding the NCO (Numerically Controlled Oscillator)Key Features of the NCO:Implementing the IBM PC/XT Beep with PIC10F322 and XC8The Circuit:The Code:Have a Project or...
Using PIC10F322 Internal Temperature Sensor to Seed a Random Number Generator with XC8
In a previous post, we discussed setting up the PIC10F322 ADC to read the internal temperature sensor. While the primary use of this sensor is to monitor the die's temperature to ensure it operates within its thermal limits, there are creative ways to utilize this...
PIC10F322 XC8 Code: How to Access the Internal Temperature Module
PIC10F322 XC8 Code: How to Access the Internal Temperature Module
Creating a Light Activated Switch with PIC10F322 and XC8
SetupHigh-Level OverviewDetailed ExplanationHardware ConfigurationThe Circuit…The CodeFuture ImprovementsSummaryHave a Project or Idea!?Seeking Bespoke Technology Solutions? In this tutorial, we will create a light-activated switch using the PIC10F322...
Localized IOT – Based on the ESP8266, JSON, and MQTT
My automation project is continually evolving, and I’m excited to share the latest advancements in my localized IoT setup. The image below shows the IoT Node Base, which includes a power regulator and is built around the ESP8266, specifically the Wemos D1 Mini....
Movement Toward Localized Computing
Movement Toward Localized Computing Is it just me, or have you also noticed the significant shift toward centralized computing models? Services like AWS, Azure, and Google Cloud have been dominating the tech landscape for a few years now. There’s no denying the...
Hydroponics Automation Overview
Building and Automating a Hydroponic System I've been growing various herbs, lettuces, and other food plants using hydroponics for some time now. It's a fantastic method for producing fresh veggies year-round. Recently, I've taken my interest a step further by...
Python Code – Create A Black and White Image using Numpy Array
As you recall - a black and white image can be represented by a 2d array. The below Python code takes a 2 x 5 array (checker board pattern) and using matplot converts it into an image we can see. #%% import matplotlib.pyplot as plt import numpy as np # 2d Image...
Image Processing – Python : Convert Image to Gray Scale – Average
Let's us look at some ways of converting a color image into a black and white or gray scale image. The most straight forward approach is averaging the three color channels, RGB. GrayValue = (Red + Green + Blue) / 3 You do this for every pixel. It is quick and...