KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
uMATE
★ 8
Open GitHub ↗
Arduino library for the Outback MATE protocol
Download README (.md)
Explore Similar Repositories
XiamaMusic
:
虾米音乐歌曲爬虫(专辑信息-歌曲清单-歌曲详情)
BreakingNews
:
A successful "New York Times Crossword" stack smash exploit for the Nintendo DS that can execute unsigned code from the savegame.
perch-docs
:
No description available.
vidchess
:
An online chess app that allows users to stream video and audio while playing a game of chess. Built with Node.js, React, WebRTC, and Socket.io.
redmine_hangouts_chat_integration
:
The redmine plugin for the integration of google hangouts chat and redmine
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
uMATE
?
Download (.md)
# μMATE An Arduino library for the Outback MATE protocol. Also see [pyMATE](https://github.com/jorticus/pymate), my Python implementation of the MATE protocol. You will need a simple adapter circuit and a TTL serial port. For more details, see [jared.geek.nz/pymate](http://jared.geek.nz/pymate) You will also need my [9-bit HW Serial library](https://github.com/jorticus/Arduino-Serial9b), or your own implementation. Your device MUST have at least 2 hardware serial ports! The Sparkfun Pro Micro works, since it has 1 USB serial port and 1 HW serial port. The Arduino Uno will NOT work as it only has 1 port! ## Installation Simply clone to your Arduino libraries folder (eg. Documents\Arduino\libraries\uMATE) Several examples are included with this library, and were built for the Sparkfun Pro Micro: ## Bridge.ino This bridges a MATEnet bus to a host computer via USB. Packets are wrapped into an HLDC-encoded frame, and can be processed by my pyMate library. This provides a more robust method for interfacing with the network, since Linux/Windows struggles with 9-bit data. ## MXEmulator.ino This emulates an Outback MX Charge Controller, with a hard-coded status packet. ## DeviceEmulator.ino This emulates an Outback Hub with 3 attached devices on ports 1..3 (MX, FX, FlexnetDC). Each child device spits out a hard-coded example status packet. You should be able to plug a MATE directly to the arduino, with appropriate level conversion (the MATE expects 0V/24V logic), or you can connect it to your computer via a USB<>UART adapter and communicate via [pyMATE](https://github.com/jorticus/pymate). ## DeviceScan.ino This scans the mate bus for attached devices. You can connect this with the DeviceEmulator example above, or with a real Outback MATE network with attached devices (with appropriate level conversion!) ## Sniffer.ino Platform: Arduino Mega 2560 (Needs 3x Hardware Serial ports) This allows you to tap an Outback MATE bus and intercept traffic between two devices. There is a python script that forwards this captured data to Wireshark for further analysis. Unlike the other sketches, this just captures low-level packet data and does not decode them using the uMATE library. ``` [MATE] --------\ /-------- [MX/FX/DC] | | [ Arduino ] | [ Tap.py ] | [ Wireshark ] ``` You should use opto-isolators to convert the +24V serial logic of the MATE bus to +5V logic of the Arduino, and provide isolation between your analysis PC and the main system wiring. ## Footnotes Pull-requests are welcome. The Outback bus operates at your battery's supply voltage (which could be 24 or 48V), so you MUST have appropriate level conversion AND isolation, or you risk damage to your Arduino and/or computer! Use this library at your own risk!