node-red-nodes icon indicating copy to clipboard operation
node-red-nodes copied to clipboard

Extra nodes for Node-RED

Results 155 node-red-nodes issues
Sort by recently updated
recently updated
newest added

### Which node are you reporting an issue on? * Arduino-board ( hidden node ) * Arduino in ### What are the steps to reproduce? Start with Arduino Uno with...

Fixes #834 - [ ] Bugfix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) ## Proposed changes See #834. The `retweet` endpoint is...

Has anyone come across this? This node used to work, but last week all of a sudden has stopped. I've tried POP3 as well, but to no avail. I'm told...

Hi, the `node-red-node-twitter` is not supporting retweets, since it uses [`/statuses/update.json`](https://github.com/node-red/node-red-nodes/blob/96fa500ad663f68d49f456036421994d4ab25cf8/social/twitter/27-twitter.js#L640), and the retweet is done by [`statuses/retweet/:id`](https://developer.twitter.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/post-statuses-retweet-id). I want to create a PR to add this support. I think...

Can you add support for msg.event please...?

### Which node are you reporting an issue on? node-red-node-email ### What are the steps to reproduce? ### What happens? ### What do you expect to happen? ### Please tell...

- [ ] Bugfix (non-breaking change which fixes an issue) - [ x ] New feature (non-breaking change which adds functionality) ## Proposed changes Call done when the operation is...

Hi Team I am trying to add COM2 in two flow files Flow1 and Flow2. The data is displayed in both flows initially . But when we disable and enable...

### Which node are you reporting an issue on? node-red-node-pi-neopixel ### What are the steps to reproduce? on a raspberry pi running buster: curl -sS get.pimoroni.com/unicornhat | bash npm install...

### node-red-node-mysql ### `[{"id":"c96f4085.cf626","type":"tab","label":"Flow 1","disabled":false,"info":""},{"id":"ad2984eb.e8368","type":"http request","z":"c96f4085.cf626","name":"","method":"GET","ret":"txt","paytoqs":"ignore","url":"https://api.coindesk.com/v1/bpi/currentprice.json","tls":"","persist":false,"proxy":"","authType":"","x":430,"y":140,"wires":[["b50bc723.faa318"]]},{"id":"2a6d8e84.498ae2","type":"inject","z":"c96f4085.cf626","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"60","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":210,"y":140,"wires":[["ad2984eb.e8368"]]},{"id":"564dec65.1c2f0c","type":"debug","z":"c96f4085.cf626","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1090,"y":140,"wires":[]},{"id":"1a181218.cb02f6","type":"function","z":"c96f4085.cf626","name":"","func":"var dataIn = msg.payload;\n//var ts=dataIn.time.updatedISO;\nvar price = dataIn.bpi.USD.rate_float;\nif (price != null){\n flow.set('price',price);\n var dataForInsertQuery = [];\n var ts = dataIn.time.updatedISO.slice(0, 19).replace('T', ' ');\n dataForInsertQuery.push(ts);\n dataForInsertQuery.push(price.toFixed(1));\n...