We all know that there are two kinds of signals:
1. Analog Signals
2. Digital Signals
We know that the signals that exists in nature are analog by default. And we also know that the signals that we store on our computers and memory devices like pen-drives, hard disks, SD cards and so on are of-course digital in nature.
Now the question that might come to your mind:
The answer to that is simple, first we sample the analog signal, and then we quantize it. Sampling is a process where in you hold the analog signal’s amplitude for a brief amount of time, so that the continuous time and continuous valued signal, becomes discrete time, continuous valued signal.
Now, there’s a theorem that governs the sampling process. Harry Nyquist, a Swedish electronic engineer came up with it. Now, it’s known as the sampling theorem.
Sampling Theorem states that the minimum sampling rate for an analog signal, when uniformly sampled is two times that frequency of the analog signal being sampled. Or in simple words, the sampling frequency must be twice that of the signal being sampled.
This minimum frequency, or the sampling rate is also called as the Nyquist rate.
So basically, we need to prove that when a signal is sampled at a frequency less than the Nyquist Sampling rate, proper recovery of the signal is not possible. We can easily prove it in the frequency domain. When the sampling frequency is less than Nyquist Rate, we can show that the recovered signal’s frequency is not same as that of the actual analog signal.
You can download the complete code at the end of this post.
Before we start, we make sure that the workspace is cleaned.
clear all;
close all;
clc;
Next, we initialize all the required variables
widthOfTheLine = 1.5;
numberOfWaves = 5; % Number of waveforms to be shown
messageSignalFrequency = input("Enter the Message Signal Frequency: "); % Taking the user's input for Message Signal Frequency
initialSamplingFreq = 50*messageSignalFrequency; % Sampling Frequency for Unsampled Signal
timePerSample = 1/initialSamplingFreq; % Time needed for a single sample
stopTime = 1; % Samples to be generated up to.
timeAxis = 0:timePerSample:stopTime-timePerSample; % Generating the time axis
totalNumberOfSamples = size(timeAxis,2); % Calculating the number of samples
samplingFrequencyInterval = initialSamplingFreq/totalNumberOfSamples; % Calculating the frequency interval to generate the frequency axis;
frequencyAxis = -initialSamplingFreq/2:samplingFrequencyInterval:initialSamplingFreq/2-samplingFrequencyInterval; % Generating the Frequency Axis
phiDegrees = 90; % in degrees
phi = phiDegrees * pi / 180;
We take a 90 degree phase shift so as to avoid the “0” sampled signal value for a perfectly sampled signal. You could easily replace the sin with a cos function and avoid adding the phase shift to the signal.
But remember there is always a walk around for everything.
GlassWire is an application that allows you to see your current and past network activity. It is available for Android and Windows. Download links below.
It can you the the exact information about all the requests-responses made from and to your computer. Unfortunately, this feature is only available to the Windows application and not on android.
The windows application how ever records and stores all the information about how much data has been consumed in any given time. It also shows the live data usage in beautiful animations, it also gives details on how much data is used for a particular protocol and particular host. This serves our purpose.
Connect your Android or iOS device to a personal hotspot of your Windows PC, and voila, you have it.
You might also like: Create a Website for free without coding.
Other features of GlassWire include Network Monitoring, it gives you the details of other devices connected to your network. It also includes a built in firewall that allows you to break an app’s connection to the internet. And also shows which app is or has connected to what IP address and their country of origin.
Well, there’s always a catch. You have buy a premium version of GlassWire to have all these and much more features available to use.
Take a moment to share this article and help us grow.
GlassWire is an application developed for android and windows for network monitoring and firewall.
Operating System: Android, Windows
Application Category: Network Utility,
It’s always ideal to use your Raspberry Pi as a dedicated downloads server and as a NAS or “Network Attached Storage”.
Leaving your desktop or Laptop turned on for a prolonged period of time, not only is energy intensive, but also waste of resources. An average Desktop PC in a typical home or small office is likely to cost you a bill of around 15,000 Indian Rupees. (Roughly 200$).
The Raspberry Pi comes to the rescue. The new Raspberry Pi 4 costs only 35$, which is way cheaper than any laptop or a desktop and is not likely to add 0’s at the end of your electricity bills. A typical Raspberry Pi is likely to consume energy that costs less than 250 Indian Rupees yearly. Adding an external Hard Drive is pretty much not going to increase that.
Additionally, you can run the Raspberry Pi headlessly, without a monitor & without even Keyboard and Mouse. All you need is a WiFi/Ethernet connection and a USB power supply.
Sounds Good? So lets start converting your Raspberry Pi to a headless downloading machine that can download anything from the web.
We will assume that you have a Raspberry Pi (the version doesn’t really matter, but i recommend the Raspberry Pi 4B as it has a Gigabit Ethernet) running the latest version of Raspbian. (Now renamed to Raspberry OS)
It’s not necessary to have an external drive, but I do recommend you to use one which is USB 3, as it has better speed and doesn’t bottle neck the transfers.
Remember that if you are running the Raspberry Pi headlessly, you need to configure SSH to access it remotely. Setting up VNC is also a good choice. If you need any information on setting up Raspberry Pi headlessly, I strongly suggest you the follow the following guides.
Assuming that you have the Raspberry Pi up and running with an internet connection, either from the Ethernet or the WiFI, we will get started with building our Raspberry Pi downloading client and NAS.
Before we start with the actual setup, take a moment to update and upgrade your Raspberry Pi to the latest version available. Open a terminal window and run the commands one after the other.
sudo apt update
sudo apt upgrade -y
Once that is done, its time to begin the installing the required software components for this project.
Run the command below one by one in a terminal window to install all the required components.
sudo apt install samba samba-common-bin transmission-daemon aria2
We will also need the Apache http server installed on the Raspberry Pi for the Aria2 web interface. Run the following command to install Apache2 with php support.
sudo apt install apache2 php
We need some place where all of our downloads will be stored. And the same will be later accessed remotely from the NAS over the network. We will create the download directories in the home directory of the default user pi.
Run the following commands one by one in the terminal to create download directories, change ownership and to grant proper read-write permissions.
cd
mkdir Downloads
sudo chown -R pi: Downloads
sudo chmod -R 775 Downloads
The Download directory is now configured so that everyone can read and the root and logged in users can read and write.
Now that we are done with installing all the prerequisites, and creating the shared directories, we need to edit the configuration files for Transmission and SAMBA. But, any configuration file that we edit will be over written by the application while they are running in the background.
Run the following commands to terminate the downloading client’s and the SAMBA server’s background processes.
sudo service transmission-daemon stop
sudo service smbd stop
Firstly, we will edit the settings.json file.It is Transmission, our torrent downloading client’s configuration file. The file is located in the /etc/transmission-daemon directory.
sudo nano sudo nano /etc/transmission-daemon/settings.json
Within this file, we will modify the following configuration options.
"download-dir": "/home/pi/Downloads",
Change Your_Password with the one you will be using to login to the client
"rpc-password": "Your_Password",
Next, we change the username we want to use to connect to Transmission. The default will be “transmission”
"rpc-username": "Your_Username",
Whitelisting your local IPs should do that job if you are planning to use the downloading client from your local network, which in most cases starts from 192.168… Change the IP accordingly. *.*.*.* allows all IP addresses to access the client which is not recommended unless you know what you are doing.
"rpc-whitelist": "192.168.*.*",
Next we need to edit the SAMBA configuration file – smb.cong, located at /etc/samba/. I suggest you to go through the configuration file once as we will be creating a new configuration file and the default one will no longer be needed.
You can rename or delete the existing the configuration file. I prefer renaming as you have the original file to restore, in case something goes wrong. Run the following commands to rename the existing file and to create a new one using nano.
sudo mv smb.conf smb.conf.old
sudo nano smb.conf
Now copy the following lines of code to the new file.
[homes]
comment = Downloads Shared Folder
browseable = yes
path = /home/pi/Downloads
read only = no
create mask = 0775
directory mask = 0775
public = yes
Save the modified file using Ctrl+X , y then Enter.
And that should complete the configuration.
Now that we have completed editing the configuration files. We can safely start Transmission Daemon and SAMBA server.
Run the following commands to start transmission and SAMBA. And also run Aria2 – our non-torrent downloading client in background.
sudo service smbd start
sudo service transmission-daemon start
sudo nohup aria2c --enable-rpc --rpc-listen-all &
Next we need to navigate to the http server’s root directory and download the files from GitHub for Aria2.
Run the following commands in a terminal window.
cd /var/www/html
git clone https://github.com/ziahamza/webui-aria2.git
sudo mv webui-aria2/docs/* .
And that’s all you have to do.
The Transmission’s Web UI can be accessed on the port 9091 on the IP address of your Raspberry Pi. Where as the Aria2 Web UI can be accessed on post 80, the default http port.
Open your web browser connected to your local network and enter the ip address of your Raspberry Pi. For example: 192.168.x.x. This should open the Aria2 WebUI exactly like the picture below.
You can add downloads from the add button, you can also pause and resume most of the downloads. You can also add torrents in the Aria2 download client. Yes you can download torrents in Aria2, but transmission is a better torrent client, Why? Check out the FAQ Section.
Now to access the Transmission WebUI you need to enter the ip address of the Raspberry Pi followed by a semicolon and the transmission RPC port which defaults to 9091. eg: 192.168.x.x:9091.
You should be getting a login prompt asking your Transmission User ID and password. Enter the user id and password you entered in the Transmission configuration file.
Now that you have your downloading clients ready, just go on and download something into the shared folder. And then access them on the SAMBA share. You can readily access them on your Windows PC (of course you have to have network discovery and file sharing turned on), and linux. For accessing it on android, you can use some file manager application which supports SMB. Like the ES File Explorer.
Accessing the SAMBA share on windows is fairly simple. Open run and type \\ipAddressOfRaspberryPi, just like in the image shows below.
On Linux, Open your File Explorer and you should have it in the network section.
Download the ES File Explorer and install the application. Then go on to the LAN section in the Menu, your Raspberry Pi should show up in the application. If not you can always manually add it, all you need to know is the Raspberry Pi’s IP address.
You need to install an application called as Document from the App Store and add the SMB Share in it.
There are other Torrent clients that you might want to investigate installing if you decide you do not like Transmission. The range is pretty limited for the Raspberry Pi but be sure to check them out.
At this point you should now have successfully setup the Transmission torrent client, Aria2 download client, and setup SAMBA on the Raspberry Pi. If you run into any issues, feel free to drop a comment below.
It’s an interconnected network of things or stuffs you use in your daily life. For example, imagine your light bulb, your fan and almost everything electronic connected to the internet. They can be controlled wirelessly from any corner in the world, yes, the world, you will need an internet connection though.
Well, the answer to that is both yes and a no, you’ll see why, Just go on reading.
Blynk is a complete platform for the IoT. They have app to control things, they have servers that relays the signals and commands to and fro the edge device and the mobile devices as well. They provide us with APIs, another abbreviation which stands for Application Programming Interface. They provide us with different protocols like HTTP, MQTT, HTTPS which is more secure and many more. Making the Blynk platform accessible from many devices which support many different programming languages.
You could use Python, C, C++, Java, Kotlin, Ruby, and many more to control.
And most importantly, Blynk is Open Source. Open Source software have an amazing community support, just like Linux and android. Their source codes are available on GitHub, and so does their documentation as well. Indeed it simple to follow.
]]>Well officially, the Blynk Platform doesn’t support the OTA updates. They do have it, but with “0” compatibility, making it of no use. They might develop it in the future, but the wait is never over.
Don’t have Arduino IDE, download Arduino IDE from their official website.
Do you know that the Arduino OTA library, helps in uploading the code to any device over the network. Well if you don’t. Yeah, it does, using the TCP/IP protocol.
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <WiFiUdp.h>
#include <ArduinoOTA.h>
#ifndef STASSID
#define STASSID "your-ssid" //put your WiFi SSID (Name)
#define STAPSK "your-password" //Set your WiFi Password
#endif
const char* ssid = STASSID;
const char* password = STAPSK;
void yourSetup(){
//put your code that need to run once
}
void yourLoop(){
//put the code that needs to run continuously
}
void setup() {
Serial.begin(115200);
Serial.println("Booting");
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
while (WiFi.waitForConnectResult() != WL_CONNECTED) {
Serial.println("Connection Failed! Rebooting...");
delay(5000);
ESP.restart();
}
// Port defaults to 8266
// ArduinoOTA.setPort(8266);
// Hostname defaults to esp8266-[ChipID]
// ArduinoOTA.setHostname("myesp8266");
// No authentication by default
// ArduinoOTA.setPassword("admin");
// Password can be set with it's md5 value as well
// MD5(admin) = 21232f297a57a5a743894a0e4a801fc3
// ArduinoOTA.setPasswordHash("21232f297a57a5a743894a0e4a801fc3");
ArduinoOTA.onStart([]() {
String type;
if (ArduinoOTA.getCommand() == U_FLASH) {
type = "sketch";
} else { // U_FS
type = "filesystem";
}
// NOTE: if updating FS this would be the place to unmount FS using FS.end()
Serial.println("Start updating " + type);
});
ArduinoOTA.onEnd([]() {
Serial.println("\nEnd");
});
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
});
ArduinoOTA.onError([](ota_error_t error) {
Serial.printf("Error[%u]: ", error);
if (error == OTA_AUTH_ERROR) {
Serial.println("Auth Failed");
} else if (error == OTA_BEGIN_ERROR) {
Serial.println("Begin Failed");
} else if (error == OTA_CONNECT_ERROR) {
Serial.println("Connect Failed");
} else if (error == OTA_RECEIVE_ERROR) {
Serial.println("Receive Failed");
} else if (error == OTA_END_ERROR) {
Serial.println("End Failed");
}
});
ArduinoOTA.begin();
Serial.println("Ready");
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
yourSetup();
}
void loop() {
ArduinoOTA.handle();
yourLoop();
}
The code is exactly same as provided in the examples in the Arduino IDE with slight modification, it’s simple and easy to understand. Once uploaded to your NodeMCU or any ESP, your device’s network port will show up in the Arduino IDE as below.
You can see there are 2 functions at the starting of the code. This is where your main program code will be. The functions void yourSetup() and void yourLoop() will word just like the void loop() and the void setup() functions.
void yourSetup(){
//put your code that need to run once
}
void yourLoop(){
//put the code that needs to run continuously
}
Now we need to add the Blynk code. First we need to import the Blynk header file, then add the credentials, and then copy paste the Blynk setup and loop’s code into our setup and loop. The complete code is given below.
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
#include <ArduinoOTA.h>
#include <BlynkSimpleEsp8266.h>
char auth[] = "Your_auth_token_here";
#ifndef STASSID
#define STASSID "Your_WiFi_SSID_here"
#define STAPSK "Your_WiFi_Password_here"
#endif
const char *ssid = STASSID;
const char *password = STAPSK;
void yourSetup()
{
Blynk.begin(auth, ssid, password);
}
void yourLoop()
{
Blynk.run();
}
void setup()
{
Serial.begin(115200);
Serial.println("Booting");
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
while (WiFi.waitForConnectResult() != WL_CONNECTED)
{
Serial.println("Connection Failed! Rebooting...");
delay(5000);
ESP.restart();
}
ArduinoOTA.setHostname("NodeMCU");
ArduinoOTA.onStart([]() {
String type;
if (ArduinoOTA.getCommand() == U_FLASH)
{
type = "sketch";
}
else
{ // U_FS
type = "filesystem";
}
// NOTE: if updating FS this would be the place to unmount FS using FS.end()
Serial.println("Start updating " + type);
});
ArduinoOTA.onEnd([]() {
Serial.println("\nEnd");
});
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
});
ArduinoOTA.onError([](ota_error_t error) {
Serial.printf("Error[%u]: ", error);
if (error == OTA_AUTH_ERROR)
{
Serial.println("Auth Failed");
}
else if (error == OTA_BEGIN_ERROR)
{
Serial.println("Begin Failed");
}
else if (error == OTA_CONNECT_ERROR)
{
Serial.println("Connect Failed");
}
else if (error == OTA_RECEIVE_ERROR)
{
Serial.println("Receive Failed");
}
else if (error == OTA_END_ERROR)
{
Serial.println("End Failed");
}
});
ArduinoOTA.begin();
Serial.println("Ready");
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
yourSetup();
}
void loop()
{
ArduinoOTA.handle();
yourLoop();
}
That’s it, you now have your Blynk code running on your edge device with OTA – Over The Air updates capability. Add or remove or manipulate the code in the yourSetup and the yourLoop part, you will have your OTA capability.
The Arduino IDE does have a problem detecting and working with the network ports. If your code is uploaded and the device is connected to WiFi and the network port is not being shown, restart your IDE.
If the port is not being shown even after restarting, I suggest you to shift over to PlatformIO on Visual Studio Code for micro controller programming. It has a lot better coding and debugging experience. Or check out this post if you want to setup your own custom Blynk server.
The most simple, easy to use and 100% working OTA code for Blynk with NodeMCU, ESP8266, ESP32 and so on.
Operating System: Windows 10, Linux, Mac OS, OSX
Application Category: IoT, Arduino
But if you have ever used or seen someone using VSCode or the Visual Studio Code from Microsoft. I can assure you that, you would never ever want to use Arduino IDE ever again. PlatformIO with VS Code is a perfect combination for programming your micro controller boards, be it Arduino UNO, Arduino Mega, NodeMCU, or the ESPs.
In order to use VSCode for programming your micro controller boards, you need to install the Platform IO Extension for VSCode.
So first of all you need to download Visual Studio Code from it official website. It’s a free and open source software and I personally use it for every program I code. Be it Python, HTML, CSS, C, or the Lua Script. So step 1 is to download VS Code, and then install it. There are different version available for Linux, Windows and Mac.
So now, that you are done downloading and install VS Code. You need to install the Platform IO extension for VS Code.
Procedure to install and enable Platform IO in VS Code for Arduino
As soon as the installation is done. Open the Visual Studio Code application. The VS Code can not only be used for Arduino, but also for Python, HTML, CSS, JS, Java, and what ever programming language there is.
Open the Extensions menu from the side bar, or use the shortcut “Ctrl+Shift+x”. Next you will need to search for “PlatformIO” in the search box and click on the tiny install button.
Just wait for a few minutes for the PlatformIO extension to install and then restart the VS Code application. Now, you are ready to use it to program your micro controllers.
Remember, you had to manually add 3rd party boards like the NodeMCUs or ESPs in the Arduino IDE from the preferences settings in the IDE. Well, you no more need to do that unnecessary thing.
We will use the basic Arduino UNO to show you how to get things done. We will make a simple LED blinking project.
After your PlatformIO extension is installed, you should be able to see an Alien icon just below the extensions icon in the left sidebar. Clicking on it should take you to the PlatfromIO Home in VS Code.
Click on the New Project button, a new window will appear.
Fill in the Name of your project.
Select the Board from the list of boards.
And then click Finish.
It usually takes a few minutes to download the essentials for that particular board and then you are good to go.
In the Arduino IDE your code was saved in files with and .ino extension. But in here, it will be saved as .cpp. Yeah, thats the file extension for C++. Don’t worry, you need not learn C++ for this. All the syntax and coding style remains same as in the Arduino IDE. But there are a few tiny changes to be made.
First of all, lets have a look at the files in our project.
As it can be seen, there are a number of files in project UNO’s workspace.
The main file that contains all of your code is the main.cpp file.
Another file of importance is the last file platformio.ini. This file is used for configuring all the various parameters for communicating with the board, for example the baud rate. Well will cover that later.
Now, click on the file main.cpp and you should see a few lines of code already written for you. Just like in the Arduino IDE.
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
You can see that there is a new line in the code, just before your void setup().
#include <Arduino.h>
This is all the difference in the code you write in the Arduino IDE and the PlatformIO IDE. Just write the code to blink the onboard LED, or use the one below, and then click on the upload button at the bottom of the application. And that should work like a charm.
#include <Arduino.h>
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Hope you learnt something new. Would you also like to know what’s Blynk and how to use it? Or may be learn how to setup your own website for free.
See you around Do care to share and comment.
Well, what you have seen are not free domains but are free subdomains. Now, a subdomain is a part of a larger domain. Take the example of this website fazals.ddns.net. Here the root domain is ddns.net which remains the sole property of its owner and is called the top level domain. However, the prefix to the domain, here fazals, defines a subdomain.
Fun Fact: Subdomains could or couldn’t be free, even if they are free, they might have “some restrictions”.
Well, most of the free subdomain providers restrict the use of subdomain to only A or AAAA type. Meaning that they can only be used to point to an IP address, be it IPv4 or IPv6.
Well, this is the second restriction you will usually have. The domain providers restrict the number of subdomains you can use. For example No-IP restricts you to use only 3 subdomains at any time. FreeDNS allows a maximum of 5.
Well they are free, so definitely, they are worth it. You are using something for which others have already paid.
Who?
The owners of the root or the top level domain.
There are number of domain name providers that will offer you a free domain name. Yes, domain and not subdomain, but only when you purchase a hosting plan which is quite expensive. Well at least for me.
Luckily, there are many free subdomain providers that actually provide subdomain for free. And yes, they have some restrictions, but they can definitely be ignored when compared to what is being provided.
Create a website for free and that too without coding, fascinating right? Check it out.
I personally prefer using No-IP and FreeDNS as they are a little more versatile and provide fast updates. You can literally use any of them.
No-IP and FreeDNS also provide Dynamic DNS clients so that you will be able to use them of self hosted website whose ip address keeps on changing.
Have you ever noticed that your ip address on your mobile and broadband network keep changing?
If yes, then your ip address is dynamic, and not static. Imagine you have a dynamic ip address allocated, the one which keeps changing and you are hosting a website. You setup a domain name to point toward that ip address.
For time being, you are able to access the website. Then, your ip address has suddenly changed. You can no longer access your website. You need to manually change the domain-ip mapping. Instead of doing it manually, the Dynamic DNS or the DDNS clients that run either on the router or on any other computer on your network update the domain-ip mapping automatically whenever a change in ip is detected.
So that’s how you get a free domain name. It’s simple, it’s easy and the most economically efficient way of getting a domain name.
Feel free to comment and share. Follow me on social media.
]]>There are 2 timers available in the 8051. The timer0 and the timer1, and there are 4 modes in which both of these timers can be configured. And each of it can be configured as a Timer or as a Counter.
Timer in 8051 is used to provide timing or delays between two events in the controller. Whereas, a counter is used to count the number of events. The TMOD or the Timer MOD register, which is a byte addressable register, is used to configure the timer/counter.
Consider the TMOD register as shown below. The 0th and the 1st bit is used to configure the modes for timer0, and the 4th and 5th bit for timer1.
The 2nd and the 6th bit is used for configuring it in either timer mode or counter mode for timer0 and timer1 respectively. If the 2nd/6th bit is 0, its configured as timer, else it’s in counter mode.
There are 4 timer modes in the 8051 microcontroller.
Now that you know the basic working of the timers in the 8051 microcontroller, let’s go through the concept of delays.
Delays are nothing but the cycles of operation with in the controller where the controller does nothing, literally nothing. If you know any programming language, its similar to a for or while loop that does nothing.
The most common clock frequency in the 8051 is 11.0592 MHz. The main reason to use this frequency is it compatibility with the most common baud rates in serial communication. Now, this clock frequency will give us a machine cycle time period of 1.085 microsecond. For a delay of 1 second, we need 921600 machine cycles.
We will be using timer0 in mode 1 configuration. Since it’s a 16-bit timer the maximum delay will be 71.11 millisecond. So, we need to run the timer for 14 complete cycles + 4096 machine cycles. I’ll leave the calculations to you.
So, now that we are done with the theory. Let’s have a look at the code.
org 0000h
mov p1, #00h
mov tmod, #01h
loop: cpl p1.5 ;compliment pin 1.5
acall delay
acall smallDelay
sjmp loop
;the subroutine delay is to loop for 14 complete 16-bit timer cycles
;and the subroutine smallDelay is for looing for 4096 times.
;the rest of the code is self explainatory.
delay: mov r0, #14
mov tl0, #00h
mov th0, #00h
setb tr0
timerLoop: jnb tf0, timerLoop
clr tf0
djnz r0, timerLoop
clr tr0
ret
smallDelay: mov tl0, #00h
mov th0, #0f0h
setb tr0
timerLoop2: jnb tf0, timerLoop2
clr tr0
clr tf0
ret
end
Download the code from here.
This code will result in toggling of pin 1.5 every second, only if operating at 11.0592 MHz. The C-equivalent code for the same program is also geven.
#include<reg51.h>
sbit pin = P1^5;
void delay(){
int i;
TMOD = 0x01;
for(i=0; i<1000; i++){
TH0 = 0xFC;
TL0 = 0x66;
TR0 = 1;
while(TF0 != 1){
;
}
TR0 = 0;
TF0 = 0;
}
}
void main(){
while (1)
{
pin = ~pin;
delay();
}
}
Download this code from my Github.
That completes the part of toggling any pin with a delay of exactly 1 second.
Read more posts on 8051 from here.
You can do that by simply changing the line cpl p1.5
or the line sbit pin = P1^5;
in embedded C to the required pin. You can also modify the code to toggle an entire port instead of a single pin.
I suggest you read this again.
Simply change the delay function, by changing the value in the TH0 and TL0.
Read about timer/counter modes from here.
Macau which is known as The city of dreams! …. oops .. I wouldn’t call it the city of dreams rather ‘The gambling city” as there are casinos and casinos everywhere but your only allowed if you’re at-least 21 and I’m not yet 21. It is known for its splendid casino nights and it is as bright as a shooting star during the nights. Your eyes would be gleaming with sparkle when you arrive.
I had been to Macau during the beginning of 2020 (yep I travelled in 2020). The first spot I visited was The fisherman’s wharf which gives the glimpse of Rome. It is a picture perfect place and also has many restaurants antique stores and boutiques… It is a blend of history and culture.
The second place I went was the Macau Tower … the first thing which popped up in my mind on reaching there was the famous photo shoot of America’s next top model .Despite being a photographic location you can have the starry view of Macau.
And then, I visited the Tree of prosperity. It is a fairy’s touched show in the lobby of Wynn hotel which begins with a screen show on the top and a golden tree arises from beneath which is covered with golden palette leaves. It is the stronghold of the people of Macau wherein they believe to throw a coin to be blessed with fortune.
The last thing for the day was the visit to luxurious Galaxy Hotel which is famous for its water shows “The fortune diamond show” … it takes place every 20 mins which spans for 5 mins . In essence i would describe as “DROPPING FOUNTAIN—CHANDELIER RISING—-DIAMOND SPINNING” . It also has amazing glass art sculptures and amazing chandeliers.
Since we have already built spectrum analyser in part 1, where we use the PyAudio Python library to open the microphone and bring in raw binary data into the code. Convert that binary data into 16-bit integers and displayed them on a Plot using the MatPlotLib’s PyPlot.
If you have not built it in the part one, click here and build the part 1 as this part will be a continuation to that.
We will be using the FFT or the Fast Fourier Transform to calculate spectrum for the spectrum analyser. Now, FFT is an algorithm that computes the Discrete Fourier Transform. In short the DFT of a sequence of signal to represent it in frequency domain.
There are many different FFT algorithms based on a wide range of published theories, from simple complex-number arithmetic to group theory and number theory. The one we will be using is the python fft algorithm from the library Numpy.
As far as the the part of the code which calculates the FFT of a sequence, there are many libraries that offer simple classes to do so. Since we already imported Numpy. And since it already provides the class or method to calculate the FFT. We will not be importing any new library.
Also, take a note that there are other libraries available that compute the FFT of a sequence of signal.
Since we have already coded in the first part, we will only be making a few changes to the code, a few additions and then we will be good to go. If you don’t have the code get it from here.
Now in the part where we initiallise the plot objects, that is to say the figure and the axises, make the following changes.
Instead of
fig, ax = plt.subplots()
make it
fig, (ax,ax1) = plt.subplots(2)
and add the following lines, to the code. The first line creates a one dimentional array containing the values from 0 uptill 44100 with number of parts equal to the size of CHUNK. And the next line sets the X axis as semilog since the frequency representation is always done on semilog plots.
x_fft = np.linspace(0, RATE, CHUNK)
line_fft, = ax1.semilogx(x_fft, np.random.rand(CHUNK), 'b')
Since the output of the FFT computations are going to range from 0 to 1. We change the Y limits of the frequency plot. And also, since the computation produces a mirror of the spectrum after half the sampling rate. We dont need the part after half the sampling rate, that is after 22050. And hence we change the X limit also.
ax1.set_xlim(20,RATE/2)
ax1.set_ylim(0,1)
And then in the infinite loop, add the following lines to compute the FFT and plot it.
Since the computed FFT contains both the real and the imaginary part. We take the absolute value of the returned FFT spectrum, multiply it by 2, and then divide it by 33000 times CHUNK to produce a plot with Y values ranging from 0 to 1.
line_fft.set_ydata(np.abs(np.fft.fft(dataInt))*2/(33000*CHUNK))
import numpy as np #importing Numpy with an alias np
import pyaudio as pa
import struct
import matplotlib.pyplot as plt
CHUNK = 1024 * 1
FORMAT = pa.paInt16
CHANNELS = 1
RATE = 44100 # in Hz
p = pa.PyAudio()
stream = p.open(
format = FORMAT,
channels = CHANNELS,
rate = RATE,
input=True,
output=True,
frames_per_buffer=CHUNK
)
fig, (ax,ax1) = plt.subplots(2)
x_fft = np.linspace(0, RATE, CHUNK)
x = np.arange(0,2*CHUNK,2)
line, = ax.plot(x, np.random.rand(CHUNK),'r')
line_fft, = ax1.semilogx(x_fft, np.random.rand(CHUNK), 'b')
ax.set_ylim(-32000,32000)
ax.ser_xlim = (0,CHUNK)
ax1.set_xlim(20,RATE/2)
ax1.set_ylim(0,1)
fig.show()
while 1:
data = stream.read(CHUNK)
dataInt = struct.unpack(str(CHUNK) + 'h', data)
line.set_ydata(dataInt)
line_fft.set_ydata(np.abs(np.fft.fft(dataInt))*2/(11000*CHUNK))
fig.canvas.draw()
fig.canvas.flush_events()
Then, when you run the program, you should be able to see the time domain as well as the frequency domain representation of the sequence from the microphone.
You shoud be able to get plots similar to one given above. Use this website to generate pure sine/square/triangular waves with any frequency you want to test out this project.
Liked the project? Drop your reviews in the comment section, and share it among your fellow mates.
Check out my other posts.
Follow me on Social Media