I mean, I can tell ypou know what your doing, but this video changed gears so hard from the first I got whiplash. Video one, was a fantastic start. Teaching what node-red is, and giving a small example of how it works. This video jumps into a whole bunch of nuts and bolts that people who are trying to learn what node red is aren't going to be able to completely grasp outside of a "huh that seems handy" kind of thought. To put it in simple terms, in this video your teaching how to garnish the plate, before you've taught how to even prepare a meal. Programming is at its heart "The solution to a problem." So when teaching/learning programming there needs to be a problem. A challenge to overcome that can be gone over broken down and explained how node-red can be used to 'solve' the problem.
@6s64 жыл бұрын
Disagreed, this video was very useful for me. Take your negativity away from here. He is providing free content for the world to learn, what are you doing? Leaving comments on KZbin videos saying the video wasn't helpful? Go find another channel to watch.
@kasekuchentv78693 жыл бұрын
@@6s6 Some points for you to consider: 1. Just because something is free doesn't mean it can't or shouldn't be criticised. 2. Feedback is really important to produce quality content. As an experienced person in a field, you take the basics of this field for obvious, even though beginners struggle to learn them. Good criticism like provided in this case is necessary. I also agree with the criticism. I watched 30 minutes of Node-RED videos now and still don't know what I could use it for.
@peekpt7 жыл бұрын
Your node-RED tutorials are awesome! Thanks so much! Congratulations!
@Opto227 жыл бұрын
Thanks Short to Ground - you're awesome!
@ltcameron16 жыл бұрын
Great video- easy to follow and a pleasant narration. very professional. Thank you.
@EdwinFairchild4 жыл бұрын
@7:05 when you show the code for the function node.. what languages can you type in there and how do you till it what language you are using and how much of that language is available ... Example standard libraries etc..
@Opto224 жыл бұрын
The function node runs JavaScript, and is limited by what is installed in your Node-RED folders, and what is compatible with your system's JavaScript runtime (all of Node-RED is really just JavaScript). So there are a lot of variables, including your Node-RED version and what libraries you have installed, but it supports a LOT of basic code and many more advanced libraries as well. I think the best way to find out what's available would be to check the Node-RED documentation and forums, or just start experimenting!
@WilliamKopans6 жыл бұрын
Your videos are extremely helpful, I wish videos like this got more attention. Keep up the great work!
@Opto226 жыл бұрын
Thanks William. We are trying to make more videos as fast as we can. Stay tuned. Any requests for future videos?
@DolphinAerie5 жыл бұрын
Excellent tutorial; I'm really enjoying it. I'm a newbie to Node Red and I'm finding your video's very helpful and clear. One note, in case you ever revise this video: in the 'Split String' demonstration, the second example in which you changed the function to split the string at the 's' character, your second text string "Hello world!" doesn't contain any 'S' characters, so the example of how changing one didn't change the other falls (just a little) flat.
@OzDeaDMeaT10 ай бұрын
Great video, is there anywhere in your videos where you talk about how to setup the subflow status node?
@foxyt40663 жыл бұрын
thank you so much on your videos explaining node red!
@Opto223 жыл бұрын
You're very welcome!
@shubhamkulkarni23525 жыл бұрын
Great Videos.... Thank You!!!!!
@Opto225 жыл бұрын
Thank you for watching!
@banzobeans7 жыл бұрын
thanks. Very well done, clear and helpful!
@Opto227 жыл бұрын
Thanks John! More videos coming soon.
@javiervicen92116 жыл бұрын
Great tutorial. Thanks a lot
@Opto226 жыл бұрын
Thanks Javier!
@squalazzo7 жыл бұрын
very well done, neat tricks, thanks :)
@Opto227 жыл бұрын
Thanks Squalazzo
@maxpuleo8203 Жыл бұрын
Do you know if there is a way to group subflows? I would like to group them on left side of the screen. Like the dashboard UI nodes. Thanks
@ratbagley3 жыл бұрын
Where can I find out how to integrate microconrollers like the ESP32 to node-red? Great stuff, well done video!
@kingsolarman15065 жыл бұрын
Thanks for the series of the Node-Red tutorials. I have a simple question. When is the best practice to separate flows in a separate 'Flow tab'? Besides the variables scope will be different, what is the reason to use a new Flow tab for flows. Is it for one task in a Flow tab? I mean by the task is like reading from serial port and process it is one task in a Flow tab, control GPIO in a Flow tab, ui in a Flow tab or just for visual organization? Thanks
@qzorn44406 жыл бұрын
What would be the procedure to Node-Red an Automation-Direct Cmore Hmi from a Raspberry Pi? Great videos!
@Opto226 жыл бұрын
I'm not familiar with the cmore hmi, does it support a browser? You could use the Node-RED dashboard to view data and change variables, the package is just `node-red-dashboard` if you want to check it out
@khomo12Ай бұрын
Thank you!
@Opto22Ай бұрын
You're welcome!
@ekasusilo6 жыл бұрын
I exported a function as a library and it works just fine, but is there a way to delete a library from the menu?
@Opto226 жыл бұрын
Not from the web UI at this time, no. If you are a sudo user, you can delete the file from the .node-red folder but besides that it just stays there in the Node-RED GUI. Apparently version .18 of Node-RED includes a library redesign, if I had to guess I'd say we can expect some library management improvements when that comes out. Hopefully.
@reigaterobot49655 жыл бұрын
Awsome! Thanks.
@td4yd1544 жыл бұрын
That’s great... so what does it do?
@Opto224 жыл бұрын
Essentially it provides an easy way to interconnect devices and services; one great application is moving analog and digital data into the cloud. Check out part 1 of the series for a more general overview!
@francescovergentini32445 жыл бұрын
I need to configure node red in order to collect hundreds of tags from a PLC to be sent to our cloud via MQTT. The point is that if I image to manually make the configuration by the graphical interface it will gonna take a wile. We also make different machines and we have to adapt the configuration machine by machine and it involve many of this tags that make the usage of the graphical interface again very difficult. Do you think there is any way to use text file to import the configuration (list of tags) in order to make the config process automatic? Thanks for any suggestion
@Opto225 жыл бұрын
In the "storage" section on the left-hand side of the Node-RED editor there's a file input node, this node can read text files directly from the storage of your device and you could filter and extract the tags from there. The file node is a core node that you should not need to install, you just need to know the absolute or relative path of the file in question.
@jakobmosburger27377 жыл бұрын
Great Video Thanks
@Opto226 жыл бұрын
Thank-you. Glad you found it helpful.
@TheFlyingKiwiNZ6 жыл бұрын
Easier to mouse select around the nodes you want to duplicate, ctrl+c to copy, then ctrl+v on the flow you want to paste them.
@ayahamed65956 жыл бұрын
thank you man
@tdtrecordsmusic4 жыл бұрын
I dunno what the other commenters are griping about. Your style is fine. Maybe the title is a bit off, caz the vid topics are more like >> overview , common things to know b4 starting , getting familiar
@SriRam-dv6mb6 жыл бұрын
can you tell me what language is used in "function node" java (or) java script
@Opto226 жыл бұрын
The language inside the Function Node is JavaScript.
@rolandogonzalez47416 жыл бұрын
how can i show information from database in the website?
@Opto226 жыл бұрын
A quick Google showed two resources worth a look. Here is one; flows.nodered.org/flow/36f2de38ed4bb62cf3a5e8fdc76d779e And the other; tech.scargill.net/a-quick-plotly/ If you want to get the database info into groov, you can use the groov DataStore. Check out the Opto Forums for help on that.
@mungunkhuyagz51916 жыл бұрын
👏👏👏
@JottyOL6 жыл бұрын
Thanks for the curse! But I have a problem with Your concept. You explain the motor, the clutch, the brakes etc. of a car befor you teach driving. It would be more motivating and easier to learn, if You would chose examples with increasing complexity and introduce all the tools, when they are needed. And the more Your examples have a practical use, the better the students will learn the concept of Node Red.
@Maydays960games6 жыл бұрын
What is the OST used in the intro called?
@Opto226 жыл бұрын
The soundtrack is Intertwined by Aulx Studio via PremiumBeat.com www.premiumbeat.com/royalty-free-tracks/intertwined
@Maydays960games6 жыл бұрын
Thanks :). I watch your whole series on Node-RED and found it really helpful. Looking forward to seeing more quality videos like this in future.
@Opto226 жыл бұрын
Hi BENCH GTX 960 - That's awesome! We are currently working on making more videos. Do you have any suggestions or requests?
@MPaulHolmesMPH4 жыл бұрын
What is a flow? I don't get what any of this does.
@Opto224 жыл бұрын
A flow is just a series of connected nodes -- so one flow is like a program, or does some programmed function. Part 1 of the series for a more general overview, and there are a ton of resources on nodered.org if you want to check them out!
@BigBigSmile6 жыл бұрын
👍👍👍
@Opto226 жыл бұрын
Right back at you Suvan!
@vishalanime7 жыл бұрын
Make a tutorial on how to use LIRC with node red (or) how to run Python script using exec on node red.
@Opto227 жыл бұрын
Thanks for the suggestion. We appreciate knowing what people are looking to use Node-RED for. I see that there is a Node and example flow for IRLC on flows.nodered.org, perhaps you could use them to get started.
@pongsawadee94496 жыл бұрын
I AM FOLLOW YOU FROM THAILAND I HAVE PROBLM ... CAN YOU TELL ME ABOUT UI NODE RED NOT APPEAR ON MY LOCALHOST:1880/UI