-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SY-1442 v.033, v0.34 Release Notes (#920)
- Loading branch information
Showing
9 changed files
with
353 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import Release from "@/components/releases/Release.astro"; | ||
import { Image } from "@/components/Media"; | ||
import Diagram from "@/components/Diagram.astro"; | ||
import LabJack from "@/pages/releases/LabJack.astro"; | ||
|
||
<Release | ||
version="0.33.0" | ||
date="Nov 5, 2024" | ||
title="Log Component" | ||
> | ||
|
||
<Diagram style="height: 300px" preview> | ||
<Image | ||
client:only="react" | ||
id="console/logs/thumbnail" | ||
themed={false} | ||
style={{ | ||
width: "500px", | ||
position: "absolute", | ||
left: "50%", | ||
transform: "translateX(-50%)", | ||
borderRadius: "1.5rem", | ||
boxShadow: "-1rem -1rem 1rem 3px var(--pluto-gray-l1-10)", | ||
}} | ||
/> | ||
</Diagram> | ||
|
||
We've added a new [log component](/reference/console/logs) to the Synnax | ||
[Console](/reference/console/get-started) that allows you to view channel data in a log | ||
format. This component can be connected to any channel, and is particularly useful for | ||
tracking the progress of [control sequences](/reference/control/get-started) and other | ||
automated hardware control processes. | ||
|
||
### Breaking Changes | ||
|
||
This release does **not** introduce any breaking changes. | ||
|
||
</Release> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import Release from "@/components/releases/Release.astro"; | ||
import { Image } from "@/components/Media"; | ||
import Diagram from "@/components/Diagram.astro"; | ||
import LabJack from "@/pages/releases/LabJack.astro"; | ||
|
||
<Release | ||
version="0.34.0" | ||
date="Nov 13, 2024" | ||
title="LabJack Support" | ||
> | ||
|
||
<LabJack /> | ||
|
||
Synnax version 0.34 introduces a built-in [LabJack | ||
driver](/reference/device-drivers/labjack) supporting all T-Series devices. | ||
|
||
You can use a [write task](/reference/device-drivers/labjack/write-task) to control | ||
digital and analog outputs on the device, and a [read | ||
task](/reference/device-drivers/labjack/read-task) to acquire data from inputs. | ||
|
||
Synnax currently only supports LabJack devices on Windows, although we plan to add | ||
support for other operating systems soon. | ||
|
||
### Taring Functionality | ||
|
||
Both [National Instruments](/reference/device-drivers/ni) and | ||
[LabJack](/reference/device-drivers/labjack) read tasks now support taring | ||
functionality. This feature allows you to zero out the current value of a read task. | ||
|
||
### Other Minor Improvements and Bug Fixes | ||
|
||
- Improved schematic connection line pathing. | ||
- Implemented [Python client](/reference/python-client) support for configuring and | ||
running [OPC UA read tasks](/reference/device-drivers/opc-ua/read-task). | ||
- Font sizes on a [schematic](/reference/console/schematic) value are now configurable. | ||
- [Schematic](/reference/console/schematic) values can now be displayed in scientific notation. | ||
|
||
### Breaking Changes | ||
|
||
This release does **not** introduce any breaking changes. | ||
|
||
</Release> |
Oops, something went wrong.