Skip to main content

Rice Kheer Recipe - Sweets Dish Recipes Of India - Bengali Payesh - How ...



Rice Kheer Recipe Ingredients  :
·         milk – 1 litre
·         Gobindobhog  rice – 1/3 cup
·         Nolen Gur
·         cardamom – 4 to 5
·         Milk Powder – 2 teaspoon (optional)
·         cardamom – 4 to 5
·         raisins  – 4 to 5
·         cashew nuts – 4 to 5



BENGALI CHALER PAYESH RECIPE WITH STEP BY STEP 

1) Boil milk in a bowl. When the milk starts boiling.

2)  Take a glass and add some milk powder (optional) with warm water and blend it very well.

3)Then add it with boiled milk in bowl. Boil the milk well in low flame until it reduces to 1/3 rd.

4) Wash rice very well and drain the rice and add it to the milk. Add some cardamom. Let it cook well.   The rice should be cooked well but should not become mushy and should hold its shape.

5) Once the rice is cooked, add NOLEN GUR, mix well.

6)  Boil for some more time so that the milk thickens.

7)  Turn off the flame.  Garnish with raisins and cashew nuts.

8)  Serve chaler payesh.

Comments

Popular posts from this blog

Clap On Off Switch Circuit Using Arduino

  Arduino Clap LED program #define MicAO 8 int ledPin = 13; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() {   pinMode(MicAO, INPUT);   pinMode(ledPin,OUTPUT);   } void loop() { int status_MicAO = digitalRead(MicAO); if (status_MicAO == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && millis()-detection_range >= 50) { detection_range = millis(); clap++; } } if (millis()-detection_range_start >= 400) { if (clap == 2) { if (!status_lights) { status_lights = true; digitalWrite(ledPin, HIGH); } else if (status_lights) { status_lights = false; digitalWrite(ledPin, LOW); } } clap = 0; } }

Bluetooth Robot Car Using Arduino Project Step By Step

Bluetooth Controlled Robot Car Using Arduino Bluetooth Controlled Robot Car Using Arduino Project using LM298n motor deriver and hc-05 bluetooth module step by step tutorial. Code Download :- Click Here Arduino bluetooth controller app Arduino bluetooth controller App

IOT Based Water Level Indicator Project Using Esp32 And Ultrasonic Sensor

  Water Level Indicator Project Using ESP32   Water Level Indicator with Alarm on Tank Full.   IoT Wi-Fi smart water level indicator for tanks with mobile app control . 📟 OLED Display (0.96" I2C SSD1306)   OLED Pin         ESP32 Pin VCC                     3.3V GND                     GND SDA                    GPIO 21 SCL                      GPIO 22     🔔 BUZZER   Buzzer Pin        ESP32 Pin   +           GPIO 26 -            GND         Each LED connects to an ESP32 GPIO pin via a current-limiting resistor.   ...