Skip to content

Commit

Permalink
sdf
Browse files Browse the repository at this point in the history
  • Loading branch information
Syndlex committed Jan 14, 2022
1 parent 209cd7d commit a9401fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/dmamatrix/dmamatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ float DmaMatrixDisplay::get_setup_priority() const { return setup_priority::PROC

void DmaMatrixDisplay::setup() {
ESP_LOGCONFIG(TAG, "Starting setup...");
HUB75_I2S_CFG::i2s_pins _pins={pin_r1_, pin_g1_, pin_b1_, pin_r2_, pin_g2_, pin_b2_, pin_a_ , pin_b_, pin_c_, pin_d_,pin_e_ ,pin_latch_ ,pin_oe_ ,pin_clk_ };
HUB75_I2S_CFG::i2s_pins _pins={
this->pin_r1_, this->pin_g1_, this->pin_b1_, this->pin_r2_, this->pin_g2_,
this->pin_b2_, this->pin_a_ , this->pin_b_, this->pin_c_, this->pin_d_,
this->pin_e_ , this->pin_latch_ ,this->pin_oe_ ,this->pin_clk_ };
HUB75_I2S_CFG mxconfig(
width_, // module width
height_, // module height
Expand Down

0 comments on commit a9401fd

Please sign in to comment.