<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[forum.rcl-radio.ru &mdash; Радио Si4703]]></title>
	<link rel="self" href="http://forum.rcl-radio.ru/extern.php?action=feed&amp;tid=124&amp;type=atom" />
	<updated>2021-09-18T21:12:06Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.rcl-radio.ru/viewtopic.php?id=124</id>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=4686#p4686" />
			<content type="html"><![CDATA[<p>По радио. <br />1.Если делаю инициализацию 1602(дисплей, lcd.init() ), нет приема радиостанций, шумит. Плата Arduino Nano.<br />2.В наушниках один канал громче. Так должно ?</p><p>P.S. Новичек.</p>]]></content>
			<author>
				<name><![CDATA[Partyzan]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=1453</uri>
			</author>
			<updated>2021-09-18T21:12:06Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=4686#p4686</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=3354#p3354" />
			<content type="html"><![CDATA[<p>Еще раз проверьте библиотеку, удалите старую, а потом установите новую <a href="http://rcl-radio.ru/wp-content/uploads/2020/01/sparkfunsi4703arduinolibrarymaster.zip">http://rcl-radio.ru/wp-content/uploads/ … master.zip</a></p>]]></content>
			<author>
				<name><![CDATA[liman324]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=2</uri>
			</author>
			<updated>2021-03-28T03:57:36Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=3354#p3354</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=3353#p3353" />
			<content type="html"><![CDATA[<p>прислали китайские товарищи еще один модуль. запустил тестовый скетч из библиотеки, переписал частоты станций, которые работают хорошо, вставил в рабочий скетч. нет звука ни с одного прописанного канала, кроме шума ненастроенного радио, индикация и управление присутствует. в тестовом скетче все работает хорошо, правда РДС так и не увидел в мониторе порта, плохой прием может, но звук некоторых станций чистый, хороший. в чем может быть причина?</p>]]></content>
			<author>
				<name><![CDATA[fishrob]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=1098</uri>
			</author>
			<updated>2021-03-27T19:52:03Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=3353#p3353</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=3048#p3048" />
			<content type="html"><![CDATA[<p>Пример из библиотеки я сразу попробовал, изменил свои частоты и убрал 15000 из строчки<br /> radio.readRDS(rdsBuffer, 15000);<br />иначе не компилировалось. Звука не было. Попробовал сегодня убрать управление с экрана, не помогло, фильтрация питания 3,3 в не помогла, любое изменение в соединении с радиомодулем приводит к пустому экрану, кроме вывода SEN. Получается, что с чипом радиомодуля общение идет, не работает радиоканал. Очень вероятно неисправен чип радиомодуля.<br />Отложу в сторону, закажу модуль и попробую еще раз. Спасибо.</p>]]></content>
			<author>
				<name><![CDATA[fishrob]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=1098</uri>
			</author>
			<updated>2021-02-07T08:05:39Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=3048#p3048</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=3045#p3045" />
			<content type="html"><![CDATA[<p>Тестовый скетч из библиотеки, если звука не будет, то точно модуль не исправен</p><div class="codebox"><pre><code>#include &lt;SparkFunSi4703.h&gt;
#include &lt;Wire.h&gt;

int resetPin = 2;
int SDIO = A4;
int SCLK = A5;
int STC = 3;

Si4703_Breakout radio(resetPin, SDIO, SCLK, STC);
int channel;
int volume;
char rdsBuffer[10];

void setup()
{
  Serial.begin(9600);
  Serial.println(&quot;\n\nSi4703_Breakout Test Sketch&quot;);
  Serial.println(&quot;===========================&quot;);  
  Serial.println(&quot;a b     Favourite stations&quot;);
  Serial.println(&quot;+ -     Volume (max 15)&quot;);
  Serial.println(&quot;u d     Seek up / down&quot;);
  Serial.println(&quot;r       Listen for RDS Data (15 sec timeout)&quot;);
  Serial.println(&quot;Send me a command letter.&quot;);
  

  radio.powerOn();
  radio.setVolume(0);
}

void loop()
{
  if (Serial.available())
  {
    char ch = Serial.read();
    if (ch == &#039;u&#039;) 
    {
      channel = radio.seekUp();
      displayInfo();
    } 
    else if (ch == &#039;d&#039;) 
    {
      channel = radio.seekDown();
      displayInfo();
    } 
    else if (ch == &#039;+&#039;) 
    {
      volume ++;
      if (volume == 16) volume = 15;
      radio.setVolume(volume);
      displayInfo();
    } 
    else if (ch == &#039;-&#039;) 
    {
      volume --;
      if (volume &lt; 0) volume = 0;
      radio.setVolume(volume);
      displayInfo();
    } 
    else if (ch == &#039;a&#039;)
    {
      channel = 930; // Rock FM
      radio.setChannel(channel);
      displayInfo();
    }
    else if (ch == &#039;b&#039;)
    {
      channel = 974; // BBC R4
      radio.setChannel(channel);
      displayInfo();
    }
    else if (ch == &#039;r&#039;)
    {
      Serial.println(&quot;RDS listening&quot;);
      radio.readRDS(rdsBuffer, 15000);
      Serial.print(&quot;RDS heard:&quot;);
      Serial.println(rdsBuffer);      
    }
  }
}

void displayInfo()
{
   Serial.print(&quot;Channel:&quot;); Serial.print(channel); 
   Serial.print(&quot; Volume:&quot;); Serial.println(volume); 
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[liman324]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=2</uri>
			</author>
			<updated>2021-02-06T19:35:22Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=3045#p3045</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=3044#p3044" />
			<content type="html"><![CDATA[<p>Не заработал. Индикатор работает, частоты свои прописал, кнопки работают и отображаются изменения на экране. В наушниках слышно управление чипом или гармоники этих частот управления. Звука радио и РДС нет, усилитель на модуле работает. Поднял чип на радиомодуле, промыл, припаял, ситуация не изменилась. Грешу на радиомодуль. В раздумьях, как бы его проверить.</p>]]></content>
			<author>
				<name><![CDATA[fishrob]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=1098</uri>
			</author>
			<updated>2021-02-06T19:19:11Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=3044#p3044</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2377#p2377" />
			<content type="html"><![CDATA[<p>ладно еще&nbsp; раз попробую или модуль дохлый звука нет и не рдс</p>]]></content>
			<author>
				<name><![CDATA[graf2017.graf2017]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=949</uri>
			</author>
			<updated>2020-11-02T07:23:58Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2377#p2377</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2370#p2370" />
			<content type="html"><![CDATA[<p>Мне сложно понять почему у Вас не работает скетч, возможно все дело в библиотеке. Проверьте библиотеку, она должна быть установлена с источника который я указал.</p>]]></content>
			<author>
				<name><![CDATA[liman324]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=2</uri>
			</author>
			<updated>2020-10-28T07:53:41Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2370#p2370</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2369#p2369" />
			<content type="html"><![CDATA[<p>прошился на другом компе теперь нет звука</p>]]></content>
			<author>
				<name><![CDATA[graf2017.graf2017]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=949</uri>
			</author>
			<updated>2020-10-27T04:22:31Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2369#p2369</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2368#p2368" />
			<content type="html"><![CDATA[<p>прошился на другом компе теперь нет звука</p>]]></content>
			<author>
				<name><![CDATA[graf2017.graf2017]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=949</uri>
			</author>
			<updated>2020-10-27T04:06:09Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2368#p2368</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2367#p2367" />
			<content type="html"><![CDATA[<p>да&nbsp; разные</p>]]></content>
			<author>
				<name><![CDATA[graf2017.graf2017]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=949</uri>
			</author>
			<updated>2020-10-26T08:52:53Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2367#p2367</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2366#p2366" />
			<content type="html"><![CDATA[<p>Вы установили библиотеку с этого источника <a href="http://forum.rcl-radio.ru/misc.php?action=pan_download&amp;item=338&amp;download=1">http://forum.rcl-radio.ru/misc.php?acti … download=1</a> <br />?</p>]]></content>
			<author>
				<name><![CDATA[liman324]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=2</uri>
			</author>
			<updated>2020-10-26T02:40:41Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2366#p2366</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2365#p2365" />
			<content type="html"><![CDATA[<p>no matching function for call to si4703_breakout</p>]]></content>
			<author>
				<name><![CDATA[graf2017.graf2017]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=949</uri>
			</author>
			<updated>2020-10-26T02:37:12Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2365#p2365</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2355#p2355" />
			<content type="html"><![CDATA[<p>Опубликуйте текст ошибки</p>]]></content>
			<author>
				<name><![CDATA[liman324]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=2</uri>
			</author>
			<updated>2020-10-22T05:05:20Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2355#p2355</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Радио Si4703]]></title>
			<link rel="alternate" href="http://forum.rcl-radio.ru/viewtopic.php?pid=2353#p2353" />
			<content type="html"><![CDATA[<p>почему ошибка</p>]]></content>
			<author>
				<name><![CDATA[graf2017.graf2017]]></name>
				<uri>http://forum.rcl-radio.ru/profile.php?id=949</uri>
			</author>
			<updated>2020-10-22T02:59:47Z</updated>
			<id>http://forum.rcl-radio.ru/viewtopic.php?pid=2353#p2353</id>
		</entry>
</feed>
