Skip to content

Commit bc8e410

Browse files
committed
small general corrections
1 parent 958a24b commit bc8e410

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

docs/Help/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Please start by trying to resolve the issue on your own:
1313
* Read the [Getting Started]({% link Getting Started/index.md %}) section
1414
* Use the Search bar on this wiki to find information related to your problem
1515
* Browse the [Frequently Asked Questions (FAQs)]({% link Help/index.md%}#faqs) below
16-
* Google your issue
16+
* ~~ChatGPT~~ Google your issue
1717

1818
If you have tried the above and are still stuck, it is a good time to ask for help.
1919

@@ -41,6 +41,10 @@ Please send us an e-mail: <a href="mailto:Vladyslav.Sorokin@infineon.com">Vladys
4141
{: .no_toc}
4242
Start with the [Contributing Guide]({%link Contributing/index.md %}) and create a [Discussion] on GitHub, we would discuss your ideas and help you get started!
4343

44+
#### No signal in ultrasonic ranging examples
45+
{: .no_toc}
46+
You probably forgot to enable the speaker with 2-pin jumper on SensEdu, follow Step #1 from [Getting Started]({% link Getting Started/index.md %}) section.
47+
4448

4549
[Discussion]: https://github.com/ShiegeChan/SensEdu/discussions
4650
[me]: https://github.com/vladysor

docs/Library/ADC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ void loop() {
356356
#### Notes
357357
{: .no_toc}
358358
* Compared to single-channel configuration, `SensEdu_ADC_ReadSequence()` returns not a value, but a pointer. Using this pointer, you can access all channels in a sequence with index brackets `[]`.
359-
* ADC conversions are organised in a "package" called **sequence**. They follow exact order defined in `adc_pins` (A0 → A1 → A2 in this example).
359+
* ADC conversions are organized in a "package" called **sequence**. They follow exact order defined in `adc_pins` (A0 → A1 → A2 in this example).
360360

361361

362362
### Read_ADC_1CH_TIM

libraries/SensEdu/examples/Basic_UltraSound/Basic_UltraSound.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define DAC_SINE_FREQ 32000 // 32kHz
1111
#define DAC_SAMPLE_RATE DAC_SINE_FREQ * sine_lut_size // 64 samples per one sine cycle
1212

13-
DAC_Channel* dac_ch = DAC_CH2;
13+
DAC_Channel* dac_ch = DAC_CH1;
1414
SensEdu_DAC_Settings dac_settings = {
1515
.dac_channel = dac_ch,
1616
.sampling_freq = DAC_SAMPLE_RATE,

libraries/SensEdu/examples/Basic_UltraSound_WiFi/Basic_UltraSound_WiFi.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define DAC_SINE_FREQ 32000 // 32kHz
1212
#define DAC_SAMPLE_RATE DAC_SINE_FREQ * sine_lut_size // 64 samples per one sine cycle
1313

14-
DAC_Channel* dac_ch = DAC_CH2;
14+
DAC_Channel* dac_ch = DAC_CH1;
1515
SensEdu_DAC_Settings dac_settings = {
1616
.dac_channel = dac_ch,
1717
.sampling_freq = DAC_SAMPLE_RATE,

0 commit comments

Comments
 (0)