Awesome, I've renamed the post.
Phil
Search found 353 matches
- Tue Jan 26, 2021 7:42 am
- Forum: MegunoLink
- Topic: Error compiling example: WiFiTCPBlink [Solved]
- Replies: 3
- Views: 433
- Sun Jan 24, 2021 12:17 am
- Forum: MegunoLink
- Topic: cannot compile for ESP32
- Replies: 1
- Views: 272
Re: cannot compile for ESP32
Hi, can you try getting it going using the standard arduino IDE and one of our library examples first? Its hard to know where the problem lies. Seems like its missing library files but I'm not familiar with Platform IO.
Cheers
Phil
Cheers
Phil
- Sat Jan 23, 2021 11:07 pm
- Forum: MegunoLink
- Topic: Error compiling example: WiFiTCPBlink [Solved]
- Replies: 3
- Views: 433
Re: Error compiling example: WiFiTCPBlink
Hi, we added a fix hopefully to our Arduino library. Please grab the latest files from github
https://github.com/Megunolink/MLP
And overwrite the ones on your computer then see if it fixes your issue.
Cheers
Phil
https://github.com/Megunolink/MLP
And overwrite the ones on your computer then see if it fixes your issue.
Cheers
Phil
- Sat Jan 23, 2021 10:42 pm
- Forum: MegunoLink
- Topic: RequestAMatrix Example Modifications
- Replies: 5
- Views: 665
Re: RequestAMatrix Example Modifications
Hi, here is an example showing how this could work.
Cheers
Phil
In this I have replaced the last column with Name and included some sample names. Check it out and see if this helps you make progress.Cheers
Phil
- Sun Jan 10, 2021 5:50 am
- Forum: MegunoLink
- Topic: RequestAMatrix Example Modifications
- Replies: 5
- Views: 665
Re: RequestAMatrix Example Modifications
Something like this..
PString P1(CurConfig[CurRow - 1].p1, sizeof(CurConfig[CurRow - 1].p1));
const char* NewValue = Parameters.NextParameter();
if (NewValue != NULL)
{
P1.print(NewValue);
}
PString P1(CurConfig[CurRow - 1].p1, sizeof(CurConfig[CurRow - 1].p1));
const char* NewValue = Parameters.NextParameter();
if (NewValue != NULL)
{
P1.print(NewValue);
}
- Fri Jan 08, 2021 9:05 pm
- Forum: MegunoLink
- Topic: RequestAMatrix Example Modifications
- Replies: 5
- Views: 665
Re: RequestAMatrix Example Modifications
Hmm thats trickier. I think you would need to adjust the structure to have character arrays and then use pstring to print the remaining parameters into those buffers.
pstring library can be found here http://arduiniana.org/libraries/pstring/
Cheers
Phil
pstring library can be found here http://arduiniana.org/libraries/pstring/
Cheers
Phil
- Sat Jan 02, 2021 7:05 pm
- Forum: MegunoLink
- Topic: License button count issue
- Replies: 2
- Views: 380
Re: License button count issue
Hi, the limit of 10 is built into the arduino library to keep it's memory use down. You can enable more commands by adding a number to your declaration. See here https://www.megunolink.com/documentation/arduino-libraries/serial-command-handler/#Command_Handler_construction There is an example where ...
- Sat Jan 02, 2021 5:37 am
- Forum: General Discussion
- Topic: RadioButton Group
- Replies: 2
- Views: 471
Re: RadioButton Group
Hi Tabear, you need to put each group of radio buttons in their own group box. That will allow you to have multiple groups of radio buttons of which 1 can be selected in each group.
Cheers
Phil
Cheers
Phil
- Sat Dec 26, 2020 3:46 am
- Forum: MegunoLink
- Topic: Command Parameters
- Replies: 2
- Views: 434
Re: Command Parameters
I think if you put sex first then use .RemainingParameters() that will grab all remaining and that would include both names.
Cheers
Phil
Cheers
Phil
- Fri Dec 25, 2020 9:53 pm
- Forum: MegunoLink
- Topic: Multiple Time Plot Graph issues
- Replies: 1
- Views: 271
Re: Multiple Time Plot Graph issues
Hi, you want to use message channels. See this page for more information.
https://www.megunolink.com/documentatio ... -channels/
Cheers
Phil
https://www.megunolink.com/documentatio ... -channels/
Cheers
Phil