├── .gitignore ├── Datasheets ├── Accelerometer_MSA301 │ └── MSA301-V1.0-ENG.PDF ├── Audio_ES8374 │ └── ES8374 PB.pdf ├── COM_M1n │ └── Sipeed M1n Datasheet V1.0.pdf ├── Display_ILI9486 │ └── ILI9486-ILITEK.pdf ├── Front-Camera_GC0328 │ └── GC0308-GalaxyCore.pdf ├── ISP_GD32F150G8U6 │ └── GD32F150G4U6-GigaDevice.pdf ├── Power-Management_AXP173 │ └── AXP173-X-Powers.pdf ├── Rear-Camera_OV7740 │ └── OV7740_OmniVision.pdf └── Touchscreen_FT6X36 │ └── FT6236-FT6336-FT6436L-FT6436_Datasheet.pdf ├── Firmware ├── Readme.md ├── v0.5.1-92-gf9bb0bb5e-dirty.bin └── v0.5.1-92-gf9bb0bb5e-dirty.lvgl.bin ├── LED └── Readme.md ├── LICENSE ├── LVGL ├── Readme.md ├── lvgl.py └── touch.py ├── README.md └── Schematics ├── Amigo ├── Maix_Amigo_2960(Schematic).pdf ├── Maix_Amigo_2960(Size).pdf └── Maix_Amigo_2960-size.dxf └── M1n-2663 ├── M.2_NGFF_B_KEY ├── B-K 3.2H.pdf ├── B-K 8.5H.pdf └── b-key 4.2.pdf ├── M1n(PCB footprint).DXF ├── M1n(Sch footprint).dxf ├── M1n-2663(Schematic).pdf ├── M1n-2663(Size).DXF └── M1n-2663(Size).pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/.gitignore -------------------------------------------------------------------------------- /Datasheets/Accelerometer_MSA301/MSA301-V1.0-ENG.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/Accelerometer_MSA301/MSA301-V1.0-ENG.PDF -------------------------------------------------------------------------------- /Datasheets/Audio_ES8374/ES8374 PB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/Audio_ES8374/ES8374 PB.pdf -------------------------------------------------------------------------------- /Datasheets/COM_M1n/Sipeed M1n Datasheet V1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/COM_M1n/Sipeed M1n Datasheet V1.0.pdf -------------------------------------------------------------------------------- /Datasheets/Display_ILI9486/ILI9486-ILITEK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/Display_ILI9486/ILI9486-ILITEK.pdf -------------------------------------------------------------------------------- /Datasheets/Front-Camera_GC0328/GC0308-GalaxyCore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/Front-Camera_GC0328/GC0308-GalaxyCore.pdf -------------------------------------------------------------------------------- /Datasheets/ISP_GD32F150G8U6/GD32F150G4U6-GigaDevice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/ISP_GD32F150G8U6/GD32F150G4U6-GigaDevice.pdf -------------------------------------------------------------------------------- /Datasheets/Power-Management_AXP173/AXP173-X-Powers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/Power-Management_AXP173/AXP173-X-Powers.pdf -------------------------------------------------------------------------------- /Datasheets/Rear-Camera_OV7740/OV7740_OmniVision.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/Rear-Camera_OV7740/OV7740_OmniVision.pdf -------------------------------------------------------------------------------- /Datasheets/Touchscreen_FT6X36/FT6236-FT6336-FT6436L-FT6436_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Datasheets/Touchscreen_FT6X36/FT6236-FT6336-FT6436L-FT6436_Datasheet.pdf -------------------------------------------------------------------------------- /Firmware/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Firmware/Readme.md -------------------------------------------------------------------------------- /Firmware/v0.5.1-92-gf9bb0bb5e-dirty.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Firmware/v0.5.1-92-gf9bb0bb5e-dirty.bin -------------------------------------------------------------------------------- /Firmware/v0.5.1-92-gf9bb0bb5e-dirty.lvgl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Firmware/v0.5.1-92-gf9bb0bb5e-dirty.lvgl.bin -------------------------------------------------------------------------------- /LED/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/LED/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/LICENSE -------------------------------------------------------------------------------- /LVGL/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/LVGL/Readme.md -------------------------------------------------------------------------------- /LVGL/lvgl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/LVGL/lvgl.py -------------------------------------------------------------------------------- /LVGL/touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/LVGL/touch.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/README.md -------------------------------------------------------------------------------- /Schematics/Amigo/Maix_Amigo_2960(Schematic).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/Amigo/Maix_Amigo_2960(Schematic).pdf -------------------------------------------------------------------------------- /Schematics/Amigo/Maix_Amigo_2960(Size).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/Amigo/Maix_Amigo_2960(Size).pdf -------------------------------------------------------------------------------- /Schematics/Amigo/Maix_Amigo_2960-size.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/Amigo/Maix_Amigo_2960-size.dxf -------------------------------------------------------------------------------- /Schematics/M1n-2663/M.2_NGFF_B_KEY/B-K 3.2H.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M.2_NGFF_B_KEY/B-K 3.2H.pdf -------------------------------------------------------------------------------- /Schematics/M1n-2663/M.2_NGFF_B_KEY/B-K 8.5H.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M.2_NGFF_B_KEY/B-K 8.5H.pdf -------------------------------------------------------------------------------- /Schematics/M1n-2663/M.2_NGFF_B_KEY/b-key 4.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M.2_NGFF_B_KEY/b-key 4.2.pdf -------------------------------------------------------------------------------- /Schematics/M1n-2663/M1n(PCB footprint).DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M1n(PCB footprint).DXF -------------------------------------------------------------------------------- /Schematics/M1n-2663/M1n(Sch footprint).dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M1n(Sch footprint).dxf -------------------------------------------------------------------------------- /Schematics/M1n-2663/M1n-2663(Schematic).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M1n-2663(Schematic).pdf -------------------------------------------------------------------------------- /Schematics/M1n-2663/M1n-2663(Size).DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M1n-2663(Size).DXF -------------------------------------------------------------------------------- /Schematics/M1n-2663/M1n-2663(Size).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngainorDev/Maix-Amigo-Help/HEAD/Schematics/M1n-2663/M1n-2663(Size).pdf --------------------------------------------------------------------------------