Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MrYsLab committed Aug 10, 2023
1 parent a5d9aea commit d6dd105
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
## telemetrix-uno-r4

# THIS IS A WORK IN PROGRESS

# Telemetrix For The Arduino UNO R4 Minima and WIFI


Expand Down
4 changes: 2 additions & 2 deletions docs/callbacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def the_callback(data):
This will print the pin number, its reported value and
the date and time when the change occurred
:param data: [pin mode, pin, current reported value, pin_mode, timestamp]
:param data: [pin mode, pin, current reported value,timestamp]
"""
date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(data[CB_TIME]))
print(f'Report Type: {data[CB_PIN_MODE]} Pin: {data[CB_PIN]} '
Expand Down Expand Up @@ -45,7 +45,7 @@ For "the_callback" above, this parameter is named data.

The list contents vary from input pin type to input pin type and
are described in detail for each _set_pin_mode_XXX_ method in the
[API documentation.](https://htmlpreview.github.io/?https://github.com/MrYsLab/telemetrix-rpi-pico/blob/master/html/telemetrix_rpi_pico/index.html)
[API documentation.](telemetrix_minima_reference.md)
The first element in the list identifies the pin type, and the last element
is a timestamp of the data change occurrence. Other elements identify the GPIO pin,
the current data value, and additional relevant information.
Expand Down
4 changes: 4 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ nav:

theme:
name: 'material'
features:
- content.action.edit
- content.action.view
- navigation.footer

plugins:
- search
Expand Down

0 comments on commit d6dd105

Please sign in to comment.