Trying to fix tests in project, not done yet
This commit is contained in:
25
templates/weather/template.toml
Normal file
25
templates/weather/template.toml
Normal file
@@ -0,0 +1,25 @@
|
||||
[template]
|
||||
name = "weather"
|
||||
base = "basic"
|
||||
description = "Weather station with TMP36 temperature sensor"
|
||||
|
||||
[requires]
|
||||
libraries = ["tmp36"]
|
||||
board_capabilities = ["analog"]
|
||||
|
||||
# Default pin assignments per board.
|
||||
# "default" is used when no board-specific section exists.
|
||||
[pins.default]
|
||||
tmp36_data = { pin = "A0", mode = "analog" }
|
||||
|
||||
[pins.uno]
|
||||
tmp36_data = { pin = "A0", mode = "analog" }
|
||||
|
||||
[pins.mega]
|
||||
tmp36_data = { pin = "A0", mode = "analog" }
|
||||
|
||||
[pins.nano]
|
||||
tmp36_data = { pin = "A0", mode = "analog" }
|
||||
|
||||
[pins.leonardo]
|
||||
tmp36_data = { pin = "A0", mode = "analog" }
|
||||
Reference in New Issue
Block a user