Dev-Board Micropython STM32F405

Вот собрал рабочую плату для изучения MicroPython-a на STM32F405

    • STM32F405 with MicroPython PYB V1.1
    • GPS SIm33ELA
    • MAX30102
    • BMP180
    • W5500 Ethernet (Пока с этим модулем проблемы)
    • Display TFT ILI9341
    • Li-Ion Зарядка будем работать от аккумуляторы
    • FLASH W25Q32 
    • 5 Users Button (74HC14 для избежания дребезга)
    • RTC battery
    • Accelerometer-MMA76603 (Встроенный)
  • Распиновка подключения MicroPythonWeatherStation
  • W25Q32 FLASH DI->MOSI DO-MISO
  • X17 – BOOT1 – лучше не использовать

 

GY-87 MPU6050 HMC5883L BMP180 Модуль

987654321

  • 10DOF modules (three-axis gyroscope + triaxial accelerometer and three-axis magnetic field + atmospheric pressure)
  • Means of communication: IIC Communication protocol(fully compatible with 3-5V system containing LLC circuit)
  • Acceleration,Gyroscope and magnetometer
  • chip:MPU6050+HMC5883+BMP180
  • power supply :3.3V-5V
  • size:2.2cmx1.7cm

qwertyuiop 1234567890

Описание.

Для включения компаса HMC5883L нужно следующие.
// Bypass Mode
Wire.beginTransmission(0x68); // Address of MPU5060
Wire.write(0x37);
Wire.write(0x02);
Wire.endTransmission();

Wire.beginTransmission(0x68);
Wire.write(0x6A);
Wire.write(0x00);
Wire.endTransmission();

// Disable Sleep Mode
Wire.beginTransmission(0x68);
Wire.write(0x6B);
Wire.write(0x00);
Wire.endTransmission();