Categories
Arduino Examples Tutorials

Frequency Meter Using Arduino

In this post we are going to create a frequency meter using arduino. This frequency counter will count the number of cycles per second and will display the output on 16×2 LCD. We used proteous for simulation purpose and to quickly test our circuit. Full source code is provided at end of the post.

Categories
NLP Tutorials

Natural Language Processing Techniques

In this post we are going to discuss about rapidly growing Research field which is about Language processing. We list down useful tools and previously well known developed APIs and techniques to use for processing Natural languages.  NLP Techniques This Quora post explains it in little more depth. But here are some of the famous techniques […]

Categories
Tutorials Android Kotlin

Rest API Client in Android using Volley and Gson

Making Http Request in android is very common when it comes to create a Restful API Client Application. Because this is a network call so it is very common that this task is kind of blocking call. When the API becomes more complex like when it needs to authenticate via OAuth2.0 or something, then the […]

Categories
Tutorials Android Examples Kotlin

Anko SQLite android Kotlin example

If you have ever programmed any application that requires database, and you came up with solution to use SQLite then you may already be familiar as how much pain it is to use and properly configure SQLite in Android. Anko provides a better way to do this complex task in a very simpler way. Import Gradle First […]

Categories
Android Kotlin Tutorials

For Loop in Kotlin

Iterating through collection of items are very common problem in any programming language. But when it comes to latest modern programming languages like Kotlin, this task became more fancy and more options become handy to do different type of iterations. Today we are going to take a deeper look into different version of for loops […]

Categories
Tutorials Python

Speech Recognition in Python using CMU Sphinx

Speech Recognition is always a difficult and interesting task to do for a lot of beginners. In this post, we are going to describe an easy way to do this tuff task using PocketSphinx. Also, there are more options available in the package other than CMU Sphinx (works offline).

Categories
Raspberry PI Tutorials

Interfacing GPS with Raspberry PI 3

  Adafruit has a very good explanation about GPS interfacing. You may follow that tutorial or continue here.   To view, the available USB to TTL converter devices use the following command ls /dev/ttyUSB* If you had installed pyserial then you may list all your available COM ports using this command via python python -m serial.tools.list_ports

Categories
Raspberry PI

Raspberry PI GPIO as Input in Python

We had mentioned using Raspberry PI GPIO as output in our previous post. Today we will talk about using Raspberry PI GPIO as input. We will try to read input from pushbuttons. We had connected pushbuttons as the Active Low state. Mean the pushbutton will remain in the Active High state unless we press any […]

Categories
Tutorials

Getting Started with Raspberry PI GPIO

After successfully installing raspbian into Raspberry PI, the first thing which comes into the mind of the embedded developer is to play with Raspberry PI GPIO. Because the very best advantage of this cheap computer is to use with external hardware through its GPIO. We are going to explain how to play with Rasberry PI GPIO’s […]

Categories
Tutorials

OOK Modulation using 555 timer

Introduction: The “OOK modulation” or On Off Keying Modulation is very popular now days due to VLC or Visible Light Communication. OOK modulation is easy to use and easy to  implement. As we can even implement this modulation using simple 555 timer IC. In this post we are going to explain How to implement OOK […]