You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This circuit perfectly works in all example code using Arduino nano every with this below connection:
////////////////////////////////////////////////////////
// | VDD | +5V
// | PWDN/RESET | D4
// | START | D5
// | DRDY | D6
// | CS | D7
// | MOSI | D11
// | MISO | D12
// | SCK | D13
// | GND | Gnd
AND USING THIS BELOW CONFIG:
const int ADS1292_DRDY_PIN = 6;
const int ADS1292_CS_PIN = 7;
const int ADS1292_START_PIN = 5;
const int ADS1292_PWDN_PIN = 4;
///////////////////////////////////////////////////////
But in example 2 computation only, pin gets change ( I use 6,7,5,4 instead for nano every)
const int ADS1292_DRDY_PIN = 26;
const int ADS1292_CS_PIN = 13;
const int ADS1292_START_PIN = 14;
const int ADS1292_PWDN_PIN = 27;
For which microcontroller, pin configurations are declared?
And I changed SPI for MEGA: MISO, MOSI, SCK with 50,51,52 but still doesn't work, only shows noise and leads error.
Tried all pin configuration but no results. Kindly let me know the exact pin configuration for Arduino MEGA.
The text was updated successfully, but these errors were encountered:
SayzarRahman
changed the title
Pinout for Arduino Mega 2560
Pinout configuration for Arduino Mega 2560
Jan 1, 2022
This circuit perfectly works in all example code using Arduino nano every with this below connection:
////////////////////////////////////////////////////////
// | VDD | +5V
// | PWDN/RESET | D4
// | START | D5
// | DRDY | D6
// | CS | D7
// | MOSI | D11
// | MISO | D12
// | SCK | D13
// | GND | Gnd
AND USING THIS BELOW CONFIG:
const int ADS1292_DRDY_PIN = 6;
const int ADS1292_CS_PIN = 7;
const int ADS1292_START_PIN = 5;
const int ADS1292_PWDN_PIN = 4;
///////////////////////////////////////////////////////
But in example 2 computation only, pin gets change ( I use 6,7,5,4 instead for nano every)
const int ADS1292_DRDY_PIN = 26;
const int ADS1292_CS_PIN = 13;
const int ADS1292_START_PIN = 14;
const int ADS1292_PWDN_PIN = 27;
For which microcontroller, pin configurations are declared?
And I changed SPI for MEGA: MISO, MOSI, SCK with 50,51,52 but still doesn't work, only shows noise and leads error.
Tried all pin configuration but no results.
Kindly let me know the exact pin configuration for Arduino MEGA.
The text was updated successfully, but these errors were encountered: