Wednesday, October 5, 2022

Public Announcement system using Asterisk

I got a task to build a Public Announcement system with select able address, single or multi destination. Here I'm using asterisk void server using few banana-pi board that i got from rejected defect board on my last project, but still functional.


 

Sunday, April 17, 2016

Github Cheatsheet

Set global users

$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com

create a new repository on the command line

echo "# apcombo" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/huntu2/apcombo.git
git push -u origin master

or push an existing repository from the command line

git remote add origin https://github.com/huntu2/apcombo.git
git push -u origin master

or import code from another repository

You can initialize this repository with code from a Subversion, Mercurial, or TFS project.

Saturday, February 13, 2016

Applying LCD Engine JX-V2959 V2.1

Recently I bought an Universal LCD Engine for my broken Dell monitor. The reason I bought it because it was cheap, the total price with shipping around 150.000 IDR from local online store.
 

The LCD engine type is JX-29-GS shown on the sticker, on the board it says JX-2959-GS V2.1. The first thing is to attach the LVDS cable connection. The LCD display type is MX150NX07. 
For reference you can follow description from https://sites.google.com/site/lcd4hobby/home .
Re-arrange the LVDS cable according to LCD based on the pinout shown in datasheets.

Friday, October 30, 2015

MT7601 on Raspberry Pi

Here's how to cross compile driver for Mediatek MT7601 based wifi dongle.

Before this, you need to compile your own raspibian kernel, see my old post: http://igunosystem.blogspot.co.id/2014/03/step-by-step-building-raspibian-on.html
After above process is OK, You'll have compiled kernel source and working root file system with working chroot (using qemu-arm-static) for raspberry pi board on your Desktop PC.

mt7601
download source:
https://github.com/porjo/mt7601/archive/master.zip
or
git clone https://github.com/porjo/mt7601.git

RTL8188eu on Raspberry pi

Here's how to cross compile driver for RTL8188eu based wifi dongle

Before this, you need to compile your own raspibian kernel, see my old post:
http://igunosystem.blogspot.co.id/2014/03/step-by-step-building-raspibian-on.html
After above process is OK, You'll have compiled kernel source and working root file system with working chroot (using qemu-arm-static) for raspberry pi board on your Desktop PC.

download source:
https://github.com/lwfinger/rtl8188eu/archive/master.zip
or
git clone https://github.com/lwfinger/rtl8188eu