Posts with their shortened content |
|
RE: LED Effects - Arduino and TwitchChat
By ronxtcdabass, 10 hours ago
|
|
@hans hello again!
no. i not tried your version in real yet.in Arduino IDE all fine.
the idea with the secret.h file was from another sketch and i found its safer as all in one file.
i´m still waiting... |
|
RE: LED Effects - Arduino and TwitchChat
By Hans, 1 day ago
|
|
Haha, no worries 😉
I'm pretty sure you can see where it went in the code I posted yesterday. Did you try it yet?
Note: secret.h doesn't need to be in a separate file as you can see in the las... |
|
RE: LED Effects - Arduino and TwitchChat
By ronxtcdabass, 2 days ago
|
|
Haha ^^ sorry!
i said, i have a lil bit changed my secret.h file for easy switching between Botaccount and Private account :)
#define SSID "FRITZ!Box 7560 GU Soundterror" // replace YOUR_SSID with y... |
|
RE: LED Effects - Arduino and TwitchChat
By Hans, 2 days ago
|
|
Haha, the suffering of the wife complain haha ... just kidding! 😉
So we should probably see and learn how to read the error messages;
Pragma messages;
In file included from C:\Portable_prog... |
|
macOS - Fix: There is no application set to open the document xyz.pkg
By Hans, 2 days ago
|
|
I had this error when installing an application on my Apple Silicon Mac M1 I
"There is no application set to open the document 'Instal XYZ.pkg'"
To fix this: select "Choose Application", and go to /Sy... |
|
RE: LED Effects - Arduino and TwitchChat
By ronxtcdabass, 3 days ago
|
|
sooo...
I've learned how important the order in the sketches is.
Many many Thanks to @hans !!!
Now I've moved the individual effect calls to the "Callback" area and there are no more error messages ... |
|
RE: LED Effects - Arduino and TwitchChat
By ronxtcdabass, 3 days ago
|
|
Hi first!
I know, many mistakes are only because I quickly clicked the sketch together again, my wife complained, which I'm just sitting at the computer again.... :)
I'll adjust the order in a momen... |
|
RE: LED Effects: Running lights with 3 colors (Red, White and Blue!)
By Hans, 3 days ago
|
|
Are you thinking of a fixed number of LEDs and colors, that just keep cycling?Meaning:
1. We set all LEDs to the initial colors we like to see.2. We copy the color of the last LED (= LED NUM_LEDS-1).3... |
|
RE: Help , I can’t get this to work
By Hans, 3 days ago
|
|
I have no idea what this code is supposed to be doing, so I haven't tested it with any hardware, but it compiles just fine over here for an ESP8266.
The only message I get is this message ("pragma mes... |
|
RE: Help , I can’t get this to work
By Hans, 3 days ago
|
|
Just posting the code here for future reference:
#include <FastLED.h>
#define LED_PIN 5
#define BRIGHTNESS 255
#define LED_TYPE WS2812B
#define COLOR_ORDER GRB
#define LED_STRIPS 48
... |
|
Help , I can’t get this to work
By tjrudd1310@aol.com, 3 days ago
|
|
Hi , I don’t know if you can help me ? I am trying to get this “ budurasmala Arduino FastLED code for circular LED pattern” off of GitHub, I can’t seem to get it to work and comes up with loads of err... |
|
RE: LED Effects - Arduino and TwitchChat
By Hans, 3 days ago
|
|
First of all, to get rid of this error:
error: 'ShowEffect' was not declared in this scope
one would need to either define a function before it is being used (eg. move the entire ShowEffect() function... |
|
RE: LED Effects: Running lights with 3 colors (Red, White and Blue!)
By braincurd, 3 days ago
|
|
Hello @hans, thank you a lot for your reply! I'm sorry for the imprecise description of my project! But I think you got what I wanted to achieve. My goal is that I want to adjust the code so that each... |
|
RE: LED Effects - Arduino and TwitchChat
By ronxtcdabass, 4 days ago
|
|
@hans Hello and big thanks!!
at the moment, my code / sketch with many errors shown in Arduino IDE:
code:
/****************************************************************
Connect to Twtich Chat ... |
|
RE: LED Effects - Arduino and TwitchChat
By Hans, 4 days ago
|
|
Alrighty, that makes more sense haha.
I think you'll be looking at two challenges.
Calling the color effects AND making sure an effect stops when another event gets triggered.I would assume you want a... |