forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge 60f57d2 into lvgl_javascript_v8
- Loading branch information
Showing
6 changed files
with
44 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"deploy": [ | ||
"../deploy.md" | ||
], | ||
"docs": "https://docs.m5stack.com/en/core/core2", | ||
"features": [ | ||
"BLE", | ||
"WiFi", | ||
"SPIRAM", | ||
"IMU", | ||
"RTC", | ||
"PMU", | ||
"SDCard", | ||
"Microphone", | ||
"USB-C" | ||
], | ||
"images": [ | ||
"m5core2.jpg" | ||
], | ||
"mcu": "esp32", | ||
"product": "M5Stack Core2", | ||
"thumbnail": "", | ||
"url": "https://m5stack.com/", | ||
"vendor": "M5 Stack" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
freeze("modules") | ||
include("$(PORT_DIR)/boards/manifest.py") | ||
freeze("./modules") |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name = "m5core2" | ||
|
||
def init(): | ||
# Init LVGL | ||
import lvgl as lv | ||
lv.init() | ||
|
||
# Power Management | ||
from power import Power | ||
Power() | ||
|
||
# LCD screen | ||
from ili9XXX import ili9341 | ||
ili9341(mosi=23, miso=38, clk=18, dc=15, cs=5, invert=True, rot=0x10, width=320, height=240, rst=-1, power=-1, backlight=-1) | ||
|
||
# Touch sensor | ||
from ft6x36 import ft6x36 | ||
ft6x36(width=320, height=280) |
File renamed without changes.
This file was deleted.
Oops, something went wrong.