Many thanks to all of you and to @wrongisthenwright in particular. I have interfaced our Ariston Nuos Split WiFi (heatpump water heater) with an eBUS Adapter Shield C6. With the help of this post and the referenced github sites I managed to decode most broadcasts. My csv file is:
# type (r[1-9];w;u),circuit,name,[comment],[QQ],ZZ,PBSB,[ID],field1,part (m/s),datatypes/templates,divider/values,unit,comment,field2,part (m/s),datatypes/templates,divider/values,unit,comment,field3,part (m/s),datatypes/templates,divider/values,unit,comment,field4,part (m/s),datatypes/templates,divider/values,unit,comment,field5,part (m/s),datatypes/templates,divider/values,unit,comment
b,broadcast,slave_address,SlaveAddress,,fe,203b,,address,,HEX:1
b,broadcast,date_time,DateTime,,fe,2070,,time,,VTM,,,,date,,HDA
b,broadcast,current_target_temperature,Current Target Temperature,,fe,2010,6147,target,,S3N,10,°C,,code,,HEX:2,,,,normal_reduced,,BCD,0=off;1=reduced;2=normal,,,
b,broadcast,reduced_temperature,Reduced Temperature,,fe,200f,6226,reduced,,S3N,10,°C,,code,,HEX:2,,,,timed_fixed,,BCD,0=off;1=timed;2=always_on,,,
b,broadcast,normal_temperature,Normal Temperature,,fe,200e,6126,new_target,,SIN,10,°C,,code,,HEX:2,,,,max_temperature,,SIN,10,°C,,
b,broadcast,nuos_info1,Nuos Info 1,,fe,2020,0220,dhw_status,s,BCD,,,,el_code,s,HEX:2,,,,electrical_element,s,BCD,,,,al_code,s,HEX:2,,,,anti_legionella,s,BCD,,,,mode_code,s,HEX:2,,,,comfort_mode,s,BCD,0=off;1=timed;2=always_on,
b,broadcast,nuos_info2,Nuos Info 2,,fe,2020,ca2a,data,s,HEX:1,,,,comfort_temp,s,HEX:2,,,,dhw_comfort_temp,m,SIN,10,°C,,economy_temp,m,HEX:2,,,,dhw_economy_temp,m,SIN,10,°C
b,broadcast,heating_mode,Heating Mode,,fe,2010,d69a,status,,SIN,1,,,heating_code,,HEX:2,,,,heating_mode,,BCD,0=off;1=heatpump;2=element;3=both,,,
b,broadcast,c_2010_da46,2010 da46,,fe,2010,da46,c_da46,,SIN,1,,,code,,HEX:2,,,,c_d3f2,,SIN,1,,,
b,broadcast,c_2038_00,2038 00,,fe,2038,00,c_2038_00,,HEX:1,,,,data,,HEX:3,,,,
b,broadcast,c_2038_01,2038 01,,fe,2038,01,c_2038_01,,HEX:1,,,,data,,HEX:3,,,,
b,broadcast,c_2038_02,2038 02,,fe,2038,02,c_2038_02,,HEX:1,,,,data,,HEX:3,,,,
b,broadcast,c_2020_7d26,2020 7d26,,fe,2020,7d26,c_7d26,,SIN,10,°C,,code1,,HEX:2,,,,c_712b,,HEX:2,,,,code2,,HEX:2,,,,c_7e2b,,SIN,10,,,
b,broadcast,ign2050,ign2050,,fe,2050,,data,,IGN:11
b,broadcast,ign2051,ign2051,,fe,2051,,data,,IGN:14
b,broadcast,ign2071,ign2071,,fe,2071,,data,,IGN:7
b,broadcast,reply,Reply,,fe,200f,,reply,,HEX:*
w,broadcast,command,Command,,fe,2020,,command,,HEX:*
w,broadcast,query,Query,,fe,2000,,query,,HEX:*
Reading parameters only seems to succeed by issuing a broadcast request, e.g. hex fe 2000 02 c028 to read the program/manual mode. Up to 4 parameters can be requested in one request. The reply comes as a broadcast message with PBSB 200f. Setting a parameter also works with a broadcast message but with PBSB 2020.
Adressing the master or the slave (77, 7c) directly does not seem to work.