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
Python

Handling Json Strings in Python

In today’s post, we are going to explain how to handle Jason Strings in Python. There is JSON module in python which is used for JSON string handling. Jason is very common in RESTfull APIs. JSON is the abbreviation of JavaScript Object Notation. Here is Tutorial about Python Dictionaries. We use Dictionary data structure for handling […]

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
Microchip PIC16

Introduction to Timer0 of PIC16F

Timer0 of pic16f is popular and very basic for creating short delays or… for creating small timing pulses. It is an 8bit timer with high priority interrupt. Which makes it perfect for creating time-critical applications like frequency counter, some industrial timing control system or any medical or industrial grade application.

Categories
Microchip PIC16

Timers of Microchip PIC

Accuracy is very important in Real-time applications. Especially with time-critical applications. so whenever we need something time critical we always need accurate timings. In such cases, we cannot rely on nop instructions based delays. We need something more powerful and more accurate. To handle this kind of errors we always use hardware-based timers. luckily Microchip pic […]

Categories
Arduino

Resistive Food Identification using Arduino

Abstract Food identification could be done in many ways as Every food is different in many ways, like shape, color, size and taste as well as many other chemical and electrical properties. What if we build some cool project out of it? Electronics is a fun to play with. So we are going to make […]