Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/pjueon/JetsonGPIO
Browse files Browse the repository at this point in the history
  • Loading branch information
pjueon committed Oct 23, 2019
2 parents e02266b + 0221b95 commit 5036067
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is a very simple C++ Jetson GPIO Library written by Jueon Park(pjueon).
It has been written in C++ based on NVIDIA's official Jetson GPIO Python library.
(https://github.com/NVIDIA/jetson-gpio)

JetsonGPIO(C++) library provides almost same public APIs provided by the NVIDIA's official Python library.
The library provides almost same APIs as the the NVIDIA's Jetson GPIO Python library.

**But it DOESN'T support all functionalites of the NVIDIA's original one.
And it's not fully tested yet.**
Expand Down
24 changes: 24 additions & 0 deletions samples/simple_out.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/*
Copyright (c) 2012-2017 Ben Croston [email protected].
Copyright (c) 2019, NVIDIA CORPORATION.
Copyright (c) 2019 Jueon Park(pjueon) [email protected].
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/

#include <iostream>
// for delay function.
#include <chrono>
Expand Down

0 comments on commit 5036067

Please sign in to comment.