Skip to content

Releases: MrYsLab/telemetrix

First Production Release

09 Nov 15:34
Compare
Choose a tag to compare
1.0

Release 1.0

Phase 6 release

29 Oct 18:22
Compare
Choose a tag to compare

This release incorporates the following:

  1. Minimal support for the DHT 22 sensor. Note: only the DHT22 is supported in this release.
  2. You may now control the scan interval for analog inputs.
  3. A differential threshod has been added to analog input to help limit the number of reports.
  4. Upon shutdown, a message is sent to Telemetrix4Arduino to stop all reports from being generated. This helps to alleviate "junk" data being received when an application is restarted.

Phase 5 - A Breaking Release

21 Oct 16:56
Compare
Choose a tag to compare

Much has been reworked, so a fresh install of the package is required for things to work.

Data transferred over the serial link now has a packet size included as the first byte of the packet. This means that the command and report tables no longer need to include a length field nor need to be coordinated when adding a new report or command.

Data is still positionally dependent between the client and server and must be coordinated to match each other.

For the STM32 processors that support a second i2c port, you can turn on the support by going into Telemetrix4Arduino.ino and uncommenting out the line:
//#define SECOND_I2C_PORT

You must also then verify that the SDA and SCLpins are correct. You may modify the defaults by modifying the following lines in the sketch:
#define SECOND_I2C_PORT_SDA PB3
#define SECOND_I2C_PORT_SCL PB10

To install, download the latest set of files. For the Python side, cd into the phase5 directory and then type:

sudo python3 setup.py

or for Windows:

python setup.py

On the Arduino side remove the previous version of the Telemetrix4Arduino library and install the latest version using the zip file in the phase5 directory.

Phase 4 Reworked

08 Oct 19:42
Compare
Choose a tag to compare

I did not build the directory structure correctly to use setup.py. This is fixed with this release.

Phase 4 Release For HC-SR04 Support

08 Oct 19:28
Compare
Choose a tag to compare

Fix for issue 2

07 Oct 12:55
Compare
Choose a tag to compare

This release fixes the issue #2 bug.

Phase 3 incorporates i2c Support

06 Oct 15:57
Compare
Choose a tag to compare

Phase 2 Servo Support

01 Oct 20:03
Compare
Choose a tag to compare

This release implemented servo support.

Phase 1 initial release

25 Sep 17:42
Compare
Choose a tag to compare
0.1.0

Initial commit