why on earth anyone would dislike this video, I really don't get it. the video quality is splendid, voice is crystal clear (which is usually reasons for getting thumbs down), instructor got into topic quickly without killing any time or advertising any lame product. He dint even ask for subscribe/like/paypal me/donate. I found him humorous too. Godddd!! Internet really is a dark place.
@manjubeli5 жыл бұрын
now i think of it, may be a competitive channel owner disliked the video, even then its a cheap thing to do.
@notenoughtech5 жыл бұрын
Comes with territory I think. Perhaps someone didn't find all the answers in the video... I focus on actual comments and feedback left.. as good feedback is welcome and valid criticism is also helpful to understand how others see my video and channel. Thanks for your kind words Manjunath
@mandeepmails5 жыл бұрын
I’m grateful to see such an elaboration. Hats off to your knowledge and presentation skill. Undoubtedly I’m newbie into this, and exploring all I can, may be you could point me to the right place, if there’s a guide to get expertise over nodered. I’m still unable to correlate some basic stuff sometimes...my first project I’ve decided is to have complete dashboard for my room lighting controls. I’ve already bought one Nodemcu.v9 and got raspberry pi able to use gpio pins. But not over wireless MQTT.....please advise me. Thanks in advance.
@notenoughtech5 жыл бұрын
I have a couple of projects that involve the dashboard so feel free to browse the website. But if you have any specific questions Im happy to answer or point you in the right direction
@ParthBhat6 жыл бұрын
Very informative as usual! The first like is mine ! Cheers!
@notenoughtech6 жыл бұрын
thank you!
@MaxGoddur3 жыл бұрын
While watching your most excellent videos I began to ponder the possibility of using Node-Red in the Windows environment. Can you have Node-Red search your computer for files containing certain text? I am thinking Node-Red could easily do this I am wrong? Oh and one constructive point....use zoom, please.
@notenoughtech3 жыл бұрын
Nodered has an exec node which can do anything command line can. Also read and write operation for nodes should have some extra info about the file structure
@mandeepmails5 жыл бұрын
Your playlists are awesome
@notenoughtech5 жыл бұрын
Thank you I'm glad you enjoy it
@liv-in-sky6 жыл бұрын
very very very good overview - thanx for this
@notenoughtech6 жыл бұрын
Thank you for the feedback
@leelasravanthi43764 жыл бұрын
This is superb.. best of the list...
@quietcorner59896 ай бұрын
Tasker is only for android devices ,what about people who work with IOS devices is there any alternative? and also is there any alternative for IFTT because it is not free
@notenoughtech6 ай бұрын
Unfortunately not. Tasker is one of the reasons I stick with Android
@krisdevoecht3 жыл бұрын
Good tutorial! Soft keyboards are .... soft 😉
@maitreyalabhe7605 жыл бұрын
How can we write RESTful API's in Node-RED which fetches data from MongoDB with some specific query instructions and bind it to the dashboard? Thanks in advance.
@notenoughtech5 жыл бұрын
Take a look at HTTP in/out nodes (and response node) for sending the requests out and setting up HTTP endpoints
@IoTLearner5 жыл бұрын
How can we convert string output into json data...
@notenoughtech5 жыл бұрын
Assuming that your string has a valid JSON structure, you can use JSON node with setting "Convert between JSON string and Object" - this will return the proper JSON object accessible via msg.xxx.xxx format
@IoTLearner5 жыл бұрын
@@notenoughtech My string is not in valid JSON structure....Can we convert it from a normal string
@notenoughtech5 жыл бұрын
Can you provide a sample string?
@IoTLearner5 жыл бұрын
@@notenoughtech "32145" is the result from my mqtt subscribe topic , I want to pass {"rfidnum":"32145"} to a mongodb node for finding it in the database
@notenoughtech5 жыл бұрын
@@IoTLearner This IS JSON formatted string - the only issue would be the 32145 is saved as a string instead of int. Please connect the debug node, set it to object mode and pass the entire object here - i will give you more details about it.