8000 [MKC-1351] OPAMP Docs by Hannes7eicher · Pull Request #1596 · arduino/docs-content · GitHub
[go: up one dir, main page]

Skip to content

[MKC-1351] OPAMP Docs #1596

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add further readings and author
  • Loading branch information
Hannes7eicher committed Dec 12, 2023
commit 65e519cb36ce8882ebe296dfdce192daa4dc083c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: 'Arduino UNO R4 Minima OPAMP'
description: 'Learn how to use the built-in Operational Amplifier in the UNO R4 Minima'
tags:
- OPAMP
author: 'Hannes Siebeneicher'
author: 'Maximilian Gerhardt, Hannes Siebeneicher'
hardware:
- hardware/02.hero/boards/uno-r4-minima
software:
Expand Down Expand Up @@ -73,4 +73,5 @@ void setup () {
}

void loop() {}

```
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: 'Arduino UNO R4 WiFi OPAMP'
description: 'Learn how to use the built-in Operational Amplifier in the UNO R4 WiFi'
tags:
- OPAMP
author: 'Hannes Siebeneicher'
author: 'Maximilian Gerhardt, Hannes Siebeneicher'
hardware:
- hardware/02.hero/boards/uno-r4-wifi
software:
Expand Down Expand Up @@ -61,6 +61,8 @@ Below is a capture of an oscilloscope in which an approx. 2 V square wave (green

![OPAMP Circuit](./assets/circuitAmplifier.png)

***Read more about an amplifier circuit [here](https://www.electronics-tutorials.ws/opamp/opamp_3.html).***

## Code

To start up the opamp, simply include the library and call `OPAMP.begin(speed)`. As the optional `speed` argument to this function, can choose either `OPAMP_SPEED_LOWSPEED`` as the low-speed (=lower power) mode or `OPAMP_SPEED_HIGHSPEED` as the high-speed, high-power mode.
Expand All @@ -73,4 +75,5 @@ void setup () {
}

void loop() {}

```
0