Square
Modulation
in the form of a square wave.
use autd3::prelude::*;
fn main() {
let _ =
Square {
freq: 150 * Hz,
option: SquareOption {
low: u8::MIN,
high: u8::MAX,
duty: 0.5,
sampling_config: SamplingConfig::FREQ_4K,
},
};
}
#include<autd3.hpp>
int main() {
using namespace autd3;
Square(150 * Hz, SquareOption{
.low = 0x00,
.high = 0xFF,
.duty = 0.5f,
.sampling_config = SamplingConfig::freq_4k(),
});
return 0; }
using AUTD3Sharp;
using AUTD3Sharp.Modulation;
using static AUTD3Sharp.Units;
new Square(
freq: 150u * Hz,
option: new SquareOption
{
Low = 0x00,
High = 0xFF,
Duty = 0.5f,
SamplingConfig = SamplingConfig.Freq4K
}
);
from pyautd3 import Hz, SamplingConfig, Square, SquareOption
Square(
freq=150 * Hz,
option=SquareOption(
low=0x00,
high=0xFF,
duty=0.5,
sampling_config=SamplingConfig.FREQ_4K,
),
)
Frequency Constraints
Square
is strict about frequency by default, and if a frequency that cannot be output due to the sampling frequency is specified, it returns an error.
In that case, you can change the sampling settings or use into_nearest
to modulate at the nearest frequency that can be output.
use autd3::prelude::*;
fn main() {
let _ =
Square {
freq: 150.0 * Hz,
option: Default::default(),
}
.into_nearest();
}
#include<autd3.hpp>
int main() {
using namespace autd3;
Square(150.0f * Hz, SquareOption{}).into_nearest();
return 0; }
using AUTD3Sharp.Modulation;
using static AUTD3Sharp.Units;
new Square(freq: 150.0f * Hz, option: new SquareOption()).IntoNearest();
from pyautd3 import Hz, Square, SquareOption
Square(freq=150.0 * Hz, option=SquareOption()).into_nearest()