Search found 12 matches

by stephenb
Sat Mar 01, 2025 9:35 am
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

Thanks I'll check it out, not so much of a hack but more of the long way round, 16 x sendmsg for each channel each row, with offset texts, but it works
by stephenb
Fri Feb 28, 2025 6:12 pm
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

I've found an extremely painful work around 😄 I'm testing it tonight
by stephenb
Fri Feb 28, 2025 9:49 am
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

Hello Paul,

It's been a while, finally got my hands on a P1 nano, I've very quickly got everything working, I'm having an issue on ROW 3 and 4 with my bus information, on the V1 M I used to return 56 char to either row 0x00 or 0x38, now it returns that but adds an unwanted space after each 7 char ...
by stephenb
Wed Jan 08, 2025 4:26 pm
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

Paul,

Please can I Lean on your knowledge again, do you know where I can gain a copy of one of the original MCU scripts? I want to see if any modified scripts have removed any important features around device placement.

I have figured out how to set up all 64 tracks with a script for each Extender ...
by stephenb
Tue Jan 07, 2025 8:12 am
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

Icon said they are going to loom into it for me and Feedback ASAP, they've been very supportive, what is actually happening, is your script loading OK and functioning but ignoring the mode type? I can send you where I'm up to with my script for you to test.

I think this Row3 and 4 is going to be a ...
by stephenb
Sun Jan 05, 2025 9:17 pm
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

Almost forgot to post this lol, hopefully this will help as a ref.

class VPOTManager:
def __init__(self):
self.base_cc = 0x30 # CC start for VPOT Led Rings (Strip 1)

def MapPanToVPOT(self, pan):
if pan == -1.0:
return (0x01, 1) # Mode 0x01 (FULL-Left), LED 1
elif -1.0 < pan <= -0.75:
return ...
by stephenb
Sat Jan 04, 2025 1:50 pm
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

I think I know how to access the 3rd and 4rd row on the main display or any from both units now! I'm testing it later.

I will send you my vpot manager class later to compare how I did it.

It's like (006, 1) 1 is the mode :)
by stephenb
Fri Jan 03, 2025 11:47 pm
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

Completed the panning tonight, used mode 2 for all and mode 3 for the centre :)

Thanks for the pointers 👍
by stephenb
Wed Jan 01, 2025 8:28 pm
Forum: Support
Topic: Icon V1-M Support, colour channels for FL Studio
Replies: 18
Views: 4215

Re: Icon V1-M Support, colour channels for FL Studio

Hi Paul,

Thank you for this information, I now have the coloured channels working perfectly including banking through them :) I'm still having challenges with the panning but I'll keep at it.

I'm currently testing for rows 3 and 4 so I can get them to use, I'll share any hardware findings with ...