Recent Posts

Pages: 1 [2] 3 4 ... 10
11
P132, P164, P232(U) and P332 RDS Encoders / Re: Magic RDS 4 with P232U
« Last post by kellanphil on August 26, 2025, 09:19:14 am »
Enable and fill with text either the Radiotext 1 or Dynamic PS 1 or both. (The Dynamic PS is deprecated and should no longer be used.)

The RDS does not carry information about text layout or method of showing so 'one line scrolling text' is indefinite. Try the parameters until you're satisfied with the result on your receiver.
Thank you very much!
12
Silence Detector / Re: send email, smtp pwd ini file encoding
« Last post by frs.steve on August 25, 2025, 01:48:55 am »
thank you!
13
Silence Detector / Re: send email, smtp pwd ini file encoding
« Last post by Jan on August 21, 2025, 06:05:56 pm »
Code: [Select]
function PwdDecode(heslo: string): string;
var i,j,m,l: integer;
    w: string;
begin
w:='';
for i:=1 to (length(heslo) div 2) do
  begin
  m:=Ord(heslo[i*2-1]);
  l:=Ord(heslo[i*2]);
  j:=(m-(i mod 3)-ord('c'))*16+(l-(i mod 3)-ord('f'));
  w:=w+Chr(j);
  end;
result:=w;
end;
14
Silence Detector / send email, smtp pwd ini file encoding
« Last post by frs.steve on August 21, 2025, 03:45:44 pm »
hi
what is the encoding used for the smtp pwd stored in the ini file?
i need to reverse decode it
15
Feature Requests / Re: Text Source - Add Loop Options
« Last post by edwayne on August 13, 2025, 08:57:44 am »
The new Minimum Display Time option sounds like exactly what I was looking for. I’ll give it a try and see how it works with my RDS playout sequence.
16
Silence Detector / Setting Alerts as "High Priority"
« Last post by jtechguy65 on August 12, 2025, 10:55:05 pm »
I've recently switched from using the MMS feature via my cell phone provider to using an app called Pushover that has a special email address that I use now for the PiraCZ silence alerts. However, I've come across a problem when my phone is on silent, the alert tone I have designated isn't audible, my phone just vibrates. While I know what I just said may seem like a question for the Pushover app support, I'm working with them too about this. I just wonder if there is a way I can declare "high priority" in PiraCZ or is it something that needs to be set within the email server that is dedicated for sending the alerts from in PiraCZ?

Thanks
17
Release News and Tutorials / Re: Release News and Change Log
« Last post by Jan on August 10, 2025, 08:53:10 pm »
Version 4.2.6

http://pira.cz/rds/magicrds/MagicRDS_Setup.exe

  • External Text Sources: a text source can optionally control RT+ running bit: if the text is empty or skipped, the RT+ running bit is temporarily switched off
  • UECP: added section Device Setup - Communication
  • Bug fix: script editor sometimes did not show in the Text Conditions
  • Bug fix: Extensions - Software RT+ encoder has sometimes sent shifted RT+ tags if applied to RDS encoders with XCMD support
18
I want to get calls from Silence Detector. I have googled and found some third party sites which could generate a phone call when a dead-air alert email is received.

Do you have any better ideas or experience with this kind of setup?

Edited 8/9 by chicken jockey clicker

I’ve been looking into the same thing and also found those third-party services that trigger a phone call from an email alert. They can work well, but reliability and cost vary a lot depending on the provider. If you want more control, you could set up a simple automation using a service like Zapier, IFTTT, or Twilio — for example, when the Silence Detector sends an email, the automation can trigger an outbound call with a pre-recorded message or text-to-speech. This way you’re not tied to one vendor and can customize it as needed.
19
Configuration Options and Possibilities / Re: Magic RDS 4 task scheduler comamnds
« Last post by Jan on August 06, 2025, 05:35:30 pm »
There are some methods:

To send three commands immediately

Code: [Select]
send connection:"*" command:"IH=000000002002" command:"IH=000000002002" command:"IH=000000002002"
To send three commands in 1 second interval

Code: [Select]
send connection:"*" command:"IH=000000002002" delay:0
send connection:"*" command:"IH=000000002002" delay:1
send connection:"*" command:"IH=000000002002" delay:2
20
Configuration Options and Possibilities / Re: Magic RDS 4 task scheduler comamnds
« Last post by multiradio on August 06, 2025, 05:27:56 pm »
Hi Jan,

I'm successfully trying Magic RDS4 (with Thimeo ST encoder), but I have a problem I can't solve, despite reading nearly all of the information in the PDF help files.

I use In-House command to control some switch interfaces we use at the repeaters  (send connection:"*" command:"IH=000000002002").

The interfaces need the command to be repeated 3 times within 10 seconds to be accepted and executed.

How can I send the command 3 times in a row with a single time trigger on the scheduler?

Thank you very much!

LB
Pages: 1 [2] 3 4 ... 10