Skip to main content

Milk Cake Recipe at Home | Milk Cake Kalakand Recipe | Indian Sweets ...





Milk Cake Recipe Ingredients:-

1. 2 ltr Milk

2. 250 gram milk powder

3. 1 cup lemon juice

4. 1 small bowl sugar

5. Cardamom dust  ½ tbsp

6. ½ tbsp ghee





Milk Cake Kalakand Recipe Making Process:-



1. Take a vessel and add 2 ltr milk and  place it on high flame .

2. Take some hot milk in a pot and add 250 gram milk powder with it and mix well. Then add it into the vessel .

3. Reducing the flame start stirring and stir the milk constantly until milk reduces to one-third of its original quantity.

4. Now Add 1 cup lemon juice into it and mix well.

5. Leave it as it is for 30 seconds on low flame and stir the milk again constantly.

6. When the milk gets thick and grainy in texture, add sugar and keep stirring constantly.

7. After 5 munites add some cardamom dust and keep stirring constantly until milk gets really thick .

8. Now the mixture is ready turn off the flame  and  keeps it 3 munites at this stage.

9. Take a small bowl and grease it nicely with ½ tbsp ghee.

10. Now transfer the mixture to the small bowl and cover it .

11. After 5 hours your milk cake will completely set.

12. Now separate all mixture into a tray.

13. Take some mixture and give it a square shape. You can do any shape.

14. Keep it in cold place and serve it .



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

How To Make Radar With Arduino UNO Using Ultrasonic Sensor

  Creating a radar system with an Arduino UNO and an ultrasonic sensor involves a few straight forward steps. First, you'll need to connect the ultrasonic sensor's trigger pin to one of the Arduino’s digital output pins and the echo pin to a digital input pin. Then, write a simple Arduino sketch to send a pulse from the trigger pin and measure the duration of the pulse received on the echo pin. This duration, proportional to the distance of an object from the sensor, can be calculated using the speed of sound. By continuously taking readings and mapping them to distances, you can plot these measurements to visualize objects in your environment, effectively creating a basic radar system. To display the results, you could use a serial monitor or even integrate an LCD display for real-time feedback. Here is the code below ,- //radar.ino #include <Servo.h>  const int trigPin = 9; const int echoPin = 8; long duration; int distance; Servo myServo;  void setup() {   p...