Node-red-node-ui-microphone

iĀ“ve solved :slight_smile:
ive found this solution: Msg in initController dashboard - #2 by hotNipi

simply call it and listen to "msg" with the $scope.$watch
Solution:

$scope.$watch('msg', function (msg) {
                            if (!msg) {								
                                return;
                            }else{
                                console.log(msg);
                                $scope.toggleMicrophone();
                            }                    
                        });