-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
M5stack Core with W5500 PoE module #77
Comments
Sadly i have no experience withe the MStack modules, but i might be able to point you in the right direction. ATEM_tally_light_with_ESP8266/libraries/ATEMbase/ATEMbase.h Lines 35 to 39 in 7053f69
|
Hi Aron, Thanks for the reply. Indeed that was one of the first things i found and altered in the ATEMmin en ATEMbase. Even tried with the EthernetUdp2 instead of EthernetUdp. But no luck so far. It does compile, but when running it wont make connection to the Atem and starts to reboot the M5Core unit. Somehow the initialization of the Atem doesn't work properly. |
Hmm.. any idea how far it gets through the initialization process? You can make it print more debug info or put some extra print statements in yourself. |
Also, are you able to get UDP working over ethernet with other Arduino programs? |
@GSAL85 I am currently using Tally Arbiter for our Tally lights with M5Sticks, but would like to reduce the complexity a little and remove the server component and use this one with the M5Sticks. What did you have to change to get this to work with M5Sticks? |
@GSAL85 How much do you know about programming arduino? Basically you need to replace/add to the code that updates the LEDs with code that updates the display or M5Stick LED instead. I just double checked, and got it working on my ESP32 dev module (not M5Stick). There were some errors, but they are fixed in what i just pushed. I'll update the release version. Be sure to replace the libraries as well. |
@AronHetLam I got it to compile after changing the references to WiFiUdp.h from WifiUDP.h. Now to figure out how to change the screen color and turn on the built in red led. |
well, I found a bit of info. The internal red LED is pin G10 and the screen color can be set by doing something like |
Nor sure why you need to change it to WifiUdp.h, however, this is where the actual color change happens here One way is to put Another approach is to do it like I did for the led strip. It's a little more advanced, but I think it's nicer. Essentially I've defined a list with colors here, that I use to lookup the correct value here |
@commputethis Sorry for the late reply. I do agree with Aron on why you would need to change the WiFiUDP. For me that wasn't necessary. With the M5Stack units it is convenient that they have the screens which you can change in any color you want, so a separate light / LED isn't required anymore. Using the code from Aron indeed you need to change it in the case statements. But you also need some additional lines in the setup and the loop to start and update the use of the screen. Check some of the examples of the Stick to see which ones are required. Also, there is an other item on Github that might help. |
Only thing I could figure on needing to change WiFiUDP is that I'm running
on Linux and it being case sensitive.
…On Thu, Aug 17, 2023, 8:20 AM GSAL85 ***@***.***> wrote:
@commputethis <https://github.com/commputethis> Sorry for the late reply.
I do agree with Aron on why you would need to change the WiFiUDP. For me
that wasn't necessary.
With the M5Stack units it is convenient that they have the screens which
you can change in any color you want, so a separate light / LED isn't
required anymore. Using the code from Aron indeed you need to change it in
the case statements. But you also need some additional lines in the setup
and the loop to start and update the use of the screen. Check some of the examples
<https://github.com/m5stack/M5StickC> of the Stick to see which ones are
required. (https://github.com/m5stack/M5StickC)
Also, there is an other item
<https://github.com/guido-visser/vMix-M5Stick-Tally-Light> on Github that
might help.
—
Reply to this email directly, view it on GitHub
<#77 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEGPBOQKSQXOC6C2J3AP5JLXVYEBJANCNFSM6AAAAAAUPECMUE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Hi,
I got the tally light working on several M5Stack modules (Core, Core2 and StickC Plus, all ESP32). All using WiFi to connect to the Atem.
In some situations however, the Wifi signal is unreliable, and therefore the tallies are not always working flawless.
As a backup we wanted to make the system work on a M5Stack Core with an w5500 Ethernet / PoE module, so make it a wired system.
However, when connected to the network via a wire, no connection to the Atem can be made.. It crashes after the atemSwitcher.begin(ip).
Does anybody have experience with this, connecting an M5Stack unit wired to an Atem??
The text was updated successfully, but these errors were encountered: