Compare commits

...

9 Commits

Author SHA1 Message Date
benas-gavea 37bab78946 Merge branch 'main' of https://github.com/opelpanfan/car-dash-wide
# Conflicts:
#	.github/workflows/main.yml
2023-03-08 10:35:19 +00:00
benas-gavea 5644be367e no message 2023-03-08 10:34:57 +00:00
Benas Brazdziunas 85ccc26555
Update main.yml 2023-03-08 10:33:22 +00:00
benas-gavea 5eee16d49b Merge branch 'main' of https://github.com/opelpanfan/car-dash-wide 2023-03-08 10:30:22 +00:00
benas-gavea 196975fc0e no message 2023-03-08 10:30:19 +00:00
Benas Brazdziunas 709c924913
Update README.md 2023-03-08 10:09:42 +00:00
benas-gavea 225b269818 no message 2023-03-08 10:06:32 +00:00
benas-gavea c3c31b6781 no message 2023-03-08 09:56:31 +00:00
benas-gavea 6ac6d5f2fa added test PCD EasyEda project (2 layers, small buttons) 2023-03-07 07:36:26 +00:00
7 changed files with 1793 additions and 1312 deletions

60
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,60 @@
name: Generate Interactive Pinouts
on:
push:
branches: [ main ]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Generate Pinouts
uses: chuckwagoncomputing/interactive-pinout@2.1
with:
mapping-path: ./Hardware/pinout/*.yaml
warnings: "false"
warning-dupe: "error"
columns: |
{
"pin":"Pin Number",
"type":"Type",
"function":"Typical Function"
}
print-columns: |
[
"function"
]
colors: |
{
"12v":"red",
"12hs":"red",
"5v":"yellow",
"in":"green",
"can":"blue",
"gnd":"black",
"out":"indigo",
}
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: pinouts
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

BIN
Hardware/pinout/back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

BIN
Hardware/pinout/black14.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -0,0 +1,108 @@
pins:
- pin: 1
type: in
function: 0-5V Analogue or GND Digital Input (selectable through FW)
- pin: 2
type: in
function: 0-5V Analogue or GND Digital Input (selectable through FW)
- pin: 3
type: in
function: 0-5V Analogue or GND Digital Input (selectable through FW)
- pin: 4
type: can
function: CAN 2 bus high
- pin: 5
type: can
function: CAN 2 bus low
- pin: 6
type: in
function: 0-5V Analogue or GND Digital Input (selectable through FW)
- pin: 7
type: in
function: 0-5V Analogue or GND Digital Input (selectable through FW)
- pin: 8
type: in
function: 0-5V Analogue or GND Digital Input (selectable through FW)
- pin: 9
type: in
function: 0-5V Analogue or GND Digital Input (selectable through FW)
- pin: 10
function: Power GND
type: gnd
- pin: 11
function: "Analog Voltage +5 supply"
type: 5v
- pin: 12
function: Power supply from bintery.
type: 12v
- pin: 13
type: can
function: CAN 1 bus high
- pin: 14
type: can
function: CAN 1 bus low
info:
title: 6.86" Dashboard
name: Connector
cid: connector
board_url: https://github.com/opelpanfan/car-dash-wide
image:
file: black14.jpg
directory: pinout
pins:
- pin: 1
x: 250
y: 185
- pin: 2
x: 309
y: 185
- pin: 3
x: 371
y: 185
- pin: 4
x: 433
y: 185
- pin: 5
x: 492
y: 185
- pin: 6
x: 280
y: 245
- pin: 7
x: 339
y: 245
- pin: 8
x: 401
y: 245
- pin: 9
x: 462
y: 245
- pin: 10
x: 250
y: 305
- pin: 11
x: 309
y: 305
- pin: 12
x: 371
y: 305
- pin: 13
x: 433
y: 305
- pin: 14
x: 492
y: 305

View File

@ -29,3 +29,12 @@ Build on STM32CubeIDE 1.11.2 and TouchGFX 4.21.1
[Datasheet](https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=776262&DocType=Customer+Drawing&DocLang=English&PartCntxt=1-776262-1&DocFormat=pdf
)
# Connector pinout
Looking from the back of the dash
![back](https://user-images.githubusercontent.com/12942077/223684612-05eea069-cdf9-4aa5-8930-e2bc4113996d.png)
[Connector](https://opelpanfan.github.io/car-dash-wide/pinout/)

File diff suppressed because one or more lines are too long