Posts

Showing posts from 2018

How to makes a classical 3D display

Image
How to makes a classical 3D display

Connect Raspberry pi using ethernet Cable to laptop or Desktop PC - Raspberry Pi Screens & Displays

Image

waterfall

Image
Hajachora Jhorna: Locally, Hazamachara Jharna belongs to Rangamati, but it is better to travel to Khagrachari to travel. It is also known as Shuknachara Falls. The name given to the local mountain range of this fountain is Chit Jurani Thangzhang Jharna (Man Shanti Jhorna). From Khagrachori's Dighinala to Hazagara, you will be seen in the nature's own hand drawn scenario.The stream of the waters of the Maini River touched the arrow. Waters flowing across the banks of the river, in the hills of the river. Indigenous people living across the street. Various Zoom Fields on the way. Hagarajara huge jharna (jhorna) will be welcome to reach the side of the green jungle. Comparing the appearance of Hazara in the whole year, she herself. There is water throughout the year here. In winter the flow of water decreases. And to be full of rainy season, full youth. But it is a good decision to go around before the winter and after the rainy season. Just around the fountain, green

One Of The Mysterious Tunnel Alutila Cave

Image
Alutila Cave, also called Alutila Mysterious Cave (Bengali: আলুটিলা গুহা) is a cave located in Matiranga Upazila in hill district of Khagrachari, Bangladesh. The cave formed inside the 1000-meter-high hill named Alutila (potato hill) or Arbari Hill. The hill area is surrounded by deep green forest. The cave is 100 meters long. It has a natural subway-like shape with cold water flowing at bottom. The cave is so dark that torches or locally sold flambeaux are used to see well enough to walk around the cave. A mysterious cave at Alutila tourist center of Matiranga upazila, 7 kilometers west of Khagrachari town. The locals call it Matei Hakid or Deva's cave. But Alutila is located in the tourist center and we know it as a potato cave. This is a renowned tourist center of Khagrachori. The natural beauty here is unrivaled, the heart touches. Alutila is the highest mountain in Khagrachari district. Although it is a hill, it is basically a mountain range. The former name of Alutil

Traveling The Sajek

Image
                  There is no word which describes the beauty of Sajek Valley. The Dense forest, mountains, grasslands, hilly areas have created an undefined beauty. When you are in the top picks Sajek Valley, you will see the clouds are flying near you. You can touch it! This awesome moment will make you feel the view of heaven in the earth. The excitement of this can’t be written. While traveling the Sajek, you will see the thrilling beauty of nature. The roads pass like a snake. There are many small rivers on the way of the journey. The weather of Sajek changed frequently from Sunny moment to dense rain. How to Go: To go Sajek valley first you have to come to the Khagrachhori. Shamoly will be the best available bus service from all. From Khagrachhori you can reach at Dighinala using CNG driven vehicles. It will be around 50 taka per person. From Dighinala you can hire motorbike or any four wheel driven vehicles locally known as Chander Gari. It will be better if you hire the

বিশ্ববিদ্যালয় হলো সক্ষমতা অর্জনের জায়গা

ইজরাইলের বিশ্ববিদ্যালয়ের ছাত্র-ছাত্রীরা যখন নতুন মৌল আবিস্কার করে, তখন আমাদের বিশ্ববিদ্যালয়ের ছাত্র-ছাত্রীরা লাইব্রেরিতে গিয়ে প্রেম করে! বিশ্বের ১ নম্বর হাভার্ড বিশ্ববিদ্যালয়ে সারা বছরে কোন কনসার্টের খবর পাওয়া যায় না। আর আমাদের ভার্সিটিতে কত কত কনসার্ট... এল.আর.বি, জেমস, শিরোনামহীন, অ্যাশেজ, তাহসান, ওয়ারফেজ.-একটার পর একটা প্রোগ্রাম হয়। নাচ, গান, হোলি উৎসবও হয় এখন। ফাক ইউ, হট বেবি, ক্রাশ খাইছি, মাস্তি, ইয়াবা, বিয়ার, গাজা এই শব্দগুলো এখন ছেলে-মেয়েদের কাছে অতি পরিচিত। অন্যান্য দেশে জ্ঞানী মানুষরা, বিজ্ঞানীরা কথা বলতে বিশ্ববিদ্যালয়ে আসেন। বিজ্ঞানী আইনস্টাইন বেশ কয়েকবার অক্সফোর্ড বিশ্ববিদ্যালয়ে ডিবেটে অংশগ্রহণ করেন। আর আমাদের? বিজ্ঞানী মকসুদুল আলম কয়টা সমাবর্তন অনুষ্ঠানে যেতেন? আমাদের বর্তমান বিজ্ঞানী মুহাম্মদ আশরাফুল আলম কয়টি সমবর্তন অনুষ্ঠানে যান? (যিনি ব্যাক্টেরিয়া শনাক্তকরণের সেন্সর তৈরি করেছেন. "যুক্তরাষ্ট্রের প্রসিডিংস অব দ্য ন্যাশনাল একাডেমি অব সায়েন্স" জার্নাল এ তার গবেষণা ছাপা হয়েছে) বা ‘জিন’ ত্রুটি নির্ণয়ে অভাবিত সাফল্য অর্জন করেছেন বাংলাদেশের যে তিন গবেষক। তার

Arduino to Smartphone Communication

Image
Arduino Code:  int led = 13; void setup(){   Serial.begin(9600);   pinMode(led,OUTPUT);   digitalWrite(led,LOW); } void loop(){  if(Serial.available()){    String value = Serial.readStringUntil('\n');    Serial.println(value);    if(value == "on"){      digitalWrite(led,HIGH);    }    else if(value == "off"){      digitalWrite(led,LOW);    }}}

LED Sequential Control Arduino Tutorial ✔

Image
* A simple program to sequentially turn on and turn off 12 LEDs * Arduino Code / int LED1 = 13; int LED2 = 12; int LED3 = 11; int LED4 = 10; int LED5 = 9; int LED6 = 8; int LED7 = 7; int LED8 = 6; int LED9 = 5; int LED10 = 4; int LED11 = 3; int LED12 = 2; void setup() {    pinMode(LED1, OUTPUT);    pinMode(LED2, OUTPUT);    pinMode(LED3, OUTPUT);    pinMode(LED4, OUTPUT);    pinMode(LED5, OUTPUT);    pinMode(LED6, OUTPUT);    pinMode(LED7, OUTPUT);    pinMode(LED8, OUTPUT);    pinMode(LED9, OUTPUT);    pinMode(LED10, OUTPUT);    pinMode(LED11, OUTPUT);    pinMode(LED12, OUTPUT); } void loop() {   digitalWrite(LED1, HIGH);    // turn on LED1   delay(100);                  // wait for 200ms   digitalWrite(LED2, HIGH);    // turn on LED2   delay(100);                  // wait for 200ms        digitalWrite(LED3, HIGH);    // turn on LED3   delay(100);                  // wait for 200ms   digitalWrite(LED4, HIGH);    // turn on LED4   delay(100)

Raspberry Pi Blinking LED (Python Code)

Image
#Blink.py import time import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(14,GPIO.OUT) GPIO.output(14, True) time.sleep(1) GPIO.output(14, False) GPIO.setup(15,GPIO.OUT) GPIO.output(15, True) time.sleep(1) GPIO.output(15, False) GPIO.setup(18,GPIO.OUT) GPIO.output(18, True) time.sleep(1) GPIO.output(18, False) GPIO.setup(23,GPIO.OUT) GPIO.output(23, True) time.sleep(1) GPIO.output(23, False) GPIO.setup(24,GPIO.OUT) GPIO.output(24, True) time.sleep(1) GPIO.output(24, False) GPIO.setup(25,GPIO.OUT) GPIO.output(25, True) time.sleep(1) GPIO.output(25, False) GPIO.setup(8,GPIO.OUT) GPIO.output(8, True) time.sleep(1) GPIO.output(8, False) GPIO.setup(7,GPIO.OUT) GPIO.output(7, True) time.sleep(1) GPIO.output(7, False) GPIO.setup(12,GPIO.OUT) GPIO.output(12, True) time.sleep(1) GPIO.output(12, False) GPIO.setmode(GPIO.BCM) GPIO.setup(14,GPIO.OUT) GPIO.output(14, True) time.sleep(1) GPIO.output(14, False) GPIO.s

LCD display Partition Using Arduino Uno

Image
//Arduino Code:  #include <LiquidCrystal.h> const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup() {   // set up the LCD's number of columns and rows:   lcd.begin(16, 2); } void loop() {         lcd.setCursor(0, 0);         lcd.print("Print-1");         lcd.setCursor(7, 0);         lcd.print("Print-2");               lcd.setCursor(0, 1);         lcd.print("Print-3");               lcd.setCursor(7, 1);         lcd.print("Print-4");         delay(1000);       }