MikrofonSensor und TemperaturSenor die zwei Python programme funktionieren. mit den jeweiligen 2 json Datein. Beim TemperaturSensor wird im Terminal keine Wertre ausgegeben aber in der json Datei kann man die Temp und Hum sehen.
This commit is contained in:
parent
4c654ec969
commit
1751076592
2614 changed files with 349009 additions and 0 deletions
|
@ -0,0 +1,48 @@
|
|||
# SPDX-FileCopyrightText: 2022 Aleksandr Saiapin for Adafruit Industries
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
"""Pin definitions for the Lichee RV Dock."""
|
||||
|
||||
from adafruit_blinka.microcontroller.allwinner.D1 import pin
|
||||
|
||||
D3 = pin.PB1
|
||||
D5 = pin.PB0
|
||||
D7 = pin.PG14
|
||||
D8 = pin.PB8
|
||||
D9 = pin.PD14
|
||||
D10 = pin.PB9
|
||||
D11 = pin.PG13
|
||||
D12 = pin.PG15
|
||||
D13 = pin.PD17
|
||||
D15 = pin.PD15
|
||||
D16 = pin.PD16
|
||||
D17 = pin.PD13
|
||||
D18 = pin.PD22
|
||||
D19 = pin.PD12
|
||||
D21 = pin.PD10
|
||||
D22 = pin.PD11
|
||||
D23 = pin.PD19
|
||||
D24 = pin.PD21
|
||||
D25 = pin.PD18
|
||||
D26 = pin.PD20
|
||||
D27 = pin.PD8
|
||||
D28 = pin.PD9
|
||||
D29 = pin.PD6
|
||||
D30 = pin.PD7
|
||||
D31 = pin.PD4
|
||||
D32 = pin.PD5
|
||||
D33 = pin.PD2
|
||||
D34 = pin.PD3
|
||||
D35 = pin.PD0
|
||||
D36 = pin.PD1
|
||||
D37 = pin.PE15
|
||||
D38 = pin.PE12
|
||||
D40 = pin.PE16
|
||||
|
||||
SDA2 = D3
|
||||
SCL2 = D5
|
||||
SDA = SDA2
|
||||
SCL = SCL2
|
||||
|
||||
UART0_TX = D8
|
||||
UART0_RX = D10
|
Loading…
Add table
Add a link
Reference in a new issue