想要在家享受星巴克的生椰拿铁慕斯,却不想出门?别担心,今天就来教大家如何在家轻松制作这款香浓美味的生椰拿铁慕斯。只需6个简单步骤,你就能做出比星巴克还要美味的拿铁慕斯,让你在家就能享受到悠闲的下午茶时光。
材料准备
在开始制作之前,我们需要准备以下材料:
- 奶油:200克
- 糖粉:50克
- 淡奶油:200毫升
- 鸡蛋:2个
- 生椰奶:100毫升
- 椰子粉:20克
- 拿铁咖啡:1包(约10克)
制作步骤
步骤1:打发奶油
首先,将奶油和糖粉放入一个大碗中,用电动打蛋器打发至体积膨胀,呈轻盈的羽毛状。这一步是制作慕斯的关键,所以一定要打发到足够轻盈。
def whip_cream(cream, sugar):
whipped_cream = cream + sugar # 假设奶油和糖粉已经混合均匀
return whipped_cream
cream = 200 # 奶油克数
sugar = 50 # 糖粉克数
whipped_cream = whip_cream(cream, sugar)
步骤2:分离蛋黄和蛋白
将鸡蛋打入碗中,分离蛋黄和蛋白。蛋黄用于制作慕斯,蛋白用于打发。
def separate_eggs(egg):
yolk = egg[0:2] # 假设鸡蛋是3个,取前两个蛋黄
white = egg[2:]
return yolk, white
egg = ['yolk1', 'yolk2', 'yolk3', 'white1', 'white2', 'white3']
yolk, white = separate_eggs(egg)
步骤3:打发蛋白
将蛋白放入另一个碗中,用电动打蛋器打发至硬性发泡。硬性发泡的蛋白非常坚挺,不易塌陷。
def whip_eggs(white):
whipped_eggs = white + 'whipped' # 假设蛋白已经打发
return whipped_eggs
white = ['white1', 'white2', 'white3']
whipped_eggs = whip_eggs(white)
步骤4:混合蛋黄和椰子粉
将蛋黄和椰子粉混合均匀,搅拌均匀。
def mix_yolk(yolk, coconut_powder):
mixed_yolk = yolk + coconut_powder # 假设蛋黄和椰子粉已经混合均匀
return mixed_yolk
yolk = ['yolk1', 'yolk2', 'yolk3']
coconut_powder = 'coconut_powder'
mixed_yolk = mix_yolk(yolk, coconut_powder)
步骤5:加入生椰奶和拿铁咖啡
将混合好的蛋黄、椰子粉、生椰奶和拿铁咖啡倒入打发好的奶油中,用刮刀翻拌均匀。
def mix_all(whipped_cream, mixed_yolk, coconut_milk, coffee):
all_mixed = whipped_cream + mixed_yolk + coconut_milk + coffee # 假设所有材料已经混合均匀
return all_mixed
whipped_cream = 'whipped_cream'
mixed_yolk = 'mixed_yolk'
coconut_milk = 'coconut_milk'
coffee = 'coffee'
all_mixed = mix_all(whipped_cream, mixed_yolk, coconut_milk, coffee)
步骤6:倒入模具,冷藏
将混合好的慕斯倒入模具中,放入冰箱冷藏至少4小时,最好过夜。这样可以让慕斯更加凝固,口感更佳。
def chill_mousse(mousse, hours):
chilled_mousse = mousse + 'chilled_for_' + str(hours) + '_hours'
return chilled_mousse
mousse = all_mixed
hours = 4
chilled_mousse = chill_mousse(mousse, hours)
享用你的美味生椰拿铁慕斯
经过以上6个简单步骤,你的生椰拿铁慕斯就制作完成了。取出模具,将慕斯倒扣在盘中,就可以尽情享用这款香浓美味的拿铁慕斯了。在家轻松制作,比星巴克还要香浓,快来试试吧!
