hi,
is it not possible to use a channel-type twice?
I want to use the type for two channels:
channel-grou
<channel-groups>
<channel-group id="datScSunday" typeId="datScSunday-type" />
<channel-group id="datScMonday" typeId="datScSMonday-type" />
</channel-groups>
'datScSunday-type' with channel 'scheduleSundayStartHour'
<channel-group-type id="datScSunday-type">
<channels>
<channel id="scheduleSundayStartHour" typeId="chScheduleStartHour" />
</channels>
</channel-group-type>
-> I think the channel is datScSunday#scheduleSundayStartHour
and
'datScMonday-type' with channel 'scheduleMondayStartHour'
<channel-group-type id="datScMonday-type">
<channels>
<channel id="scheduleMondayStartHour" typeId="chScheduleStartHour" />
</channels>
</channel-group-type>
-> I think the channel is datScMonday#scheduleMondayStartHour
channel-type
<channel-type id="chScheduleStartHour">
<item-type>Number</item-type>
<label>Schedule Start Hour</label>
<category>Info</category>
<state readOnly="false" min="0" max="23" step="1" pattern="%d h" />
</channel-type>
But when I add my thing via PapaerUI I get a http 500 error and the thing don't have any channels. When I copy the channel-type with another id it works.