{"id":13418658,"url":"https://github.com/madsci1016/Arduino-EasyTransfer","last_synced_at":"2025-03-15T03:31:47.126Z","repository":{"id":141963301,"uuid":"2464640","full_name":"madsci1016/Arduino-EasyTransfer","owner":"madsci1016","description":"An Easy way to Transfer data between Arduinos","archived":false,"fork":false,"pushed_at":"2023-08-24T19:45:44.000Z","size":168,"stargazers_count":318,"open_issues_count":16,"forks_count":113,"subscribers_count":49,"default_branch":"master","last_synced_at":"2024-07-31T22:43:40.317Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.billporter.info/easytransfer-arduino-library/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/madsci1016.png","metadata":{"files":{"readme":"README.txt","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2011-09-27T01:05:04.000Z","updated_at":"2024-03-15T12:39:42.000Z","dependencies_parsed_at":"2024-01-15T20:47:20.986Z","dependency_job_id":"54e97ace-b3e3-454c-83db-c71d4634a19e","html_url":"https://github.com/madsci1016/Arduino-EasyTransfer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madsci1016%2FArduino-EasyTransfer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madsci1016%2FArduino-EasyTransfer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madsci1016%2FArduino-EasyTransfer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madsci1016%2FArduino-EasyTransfer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/madsci1016","download_url":"https://codeload.github.com/madsci1016/Arduino-EasyTransfer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243681024,"owners_count":20330152,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-30T22:01:05.132Z","updated_at":"2025-03-15T03:31:43.842Z","avatar_url":"https://github.com/madsci1016.png","language":"C++","readme":"/******************************************************************\n*  EasyTransfer Arduino Library v2.1\n*\t\tdetails and example sketch: \n*\t\t\thttp://www.billporter.info/easytransfer-arduino-library/\n*\n*\t\tBrought to you by:\n*              Bill Porter\n*              www.billporter.info\n*\n*\t\tMajor props to Mathieu Alorent (kumy) for \n*\t\t  I2C version and the pretty pictures.\n*\n*\n*  Lib version history\n*\t1.0  Created\n*\t1.1  Fixed dumb Copy-paste error in header file\n*\t\t Added a keyword file\n*\t1.5  Forked lib into Software and Hardware Serial branches, I don't know a better way\n*\t\t added passing in of Serial port of different types\n*\t1.6  Fixed bug where it wasn't clearing out the buffers if the CheckSum failed,\n*\t\t\tI'm good at dumb mistakes\n*\t1.7  Fixed a bug where the receive function could block for too long and never process data correctly\n*\t\t    Organized the examples to be Arduino IDE compatible\n*\t1.8\n*\t\tNow Arduino 1.0 compatible!\n*   1.81\n*\t\tMade it more cross compatible. Man, They really made us work for this one. \n*   2.0\n*       Combined SoftEasyTransfer with the other two to make everything one repo\n*           Added EasyTransferVirtualWire library for use with Virtual Wire and cheap radios.\n*   2.0.1\n*       VirtualWire version tested by garth@netram, bugs fixed. \n*   2.1\n*\t   Changes RX parsing buffer to dynamic allocation to conserve RAM.\n*\n*\n*  Limits of the Library\n*\t\tYou can change the Serial port,\n*\t\tbut the Struct size must not pass 255 bytes\n*\t\tVirtualWire Version Struct can'e be bigger then 26 bytes\n*\n*   The protcol is as follows:\n*\t\tHeader(0x06,0x85),SizeofPayload,Payload,Checksum\n*\t\n*  \n*This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\u003chttp://www.gnu.org/licenses/\u003e\n*\n*This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. \n*To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or\n*send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.\n******************************************************************/\n\n\n********************To Install*************************************\n\nTo install, unzip and place 'EasyTransfer' folder into your 'C:\\Users\\{user name}\\Documents\\Arduino\\libraries' folder or '{Arduino IDE path}\\hardware\\libraries\" or {Arduino IDE path}\\libraries\" directory. \n\nRestart the Arduino IDE, look for the Library under \"Sketch\" -\u003e \"Import Library\". You can also try the examples by finding them\nunder \"File\" -\u003e \"Examples\" -\u003e \"EasyTransfer\".\n\nAll uses of the library are in the example sketchs. \n\n\n*******************************************************************\n\n\nLibrary now has two versions, one for regular hardware Serial, one for use with the NewSoftSerial library\nmaking any Arduino pin capable of transfering data back and forth easily. \n\nSee the examples to find out how to use the library. ","funding_links":[],"categories":["C++","Libraries"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadsci1016%2FArduino-EasyTransfer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmadsci1016%2FArduino-EasyTransfer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadsci1016%2FArduino-EasyTransfer/lists"}