This file contains hidden or 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
/* | |
Lineplot v2.0 | |
by danko | |
Lineplot makes a plot of a CSV file | |
The CSV file (PlotFile) has three columns; | |
a timestamp and two values (between 0-255 for the channels of the | |
Velleman k8055 board) | |
Needs Grapher.ahk by jonny, hacked by me | |
to get ticmarks and renamed to grapher1.ahk |
This file contains hidden or 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
; quick and dirty testfile creator | |
; it produces a two dimensional square array of values. | |
; two functions can be selected: | |
; a sinc and a normal distribution. | |
#SingleInstance force ; If it is alReady Running it will be restarted. | |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetTitleMatchMode,2 ; string somewhere in titel is ok. |
This file contains hidden or 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
/* | |
Greyplot v1.0 | |
by danko | |
Greyplot makes grayscale plots of a CSV file | |
the file is an array of X . Y points where the values | |
are the intensities (Z values) | |
Needs Grapher.ahk by jonny, hacked by me | |
to get tics and renamed to grapher2.ahk | |
It started as a simple plotting routine for real-time |
This file contains hidden or 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
14:47:24,054.51,018.18 | |
14:47:34,054.50,018.17 | |
14:47:44,054.50,018.17 | |
14:47:53,054.51,018.16 | |
14:48:03,054.50,018.15 | |
14:48:12,054.49,018.13 | |
14:48:22,054.52,018.07 | |
14:48:32,054.50,017.96 | |
14:48:41,054.50,017.72 | |
14:48:51,054.50,017.54 |
This file contains hidden or 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
;;;;;;;;;;;;;;; | |
; | |
; Function Grapher by jonny | |
; | |
; | |
;;;Functions;;; | |
; | |
;GraphCreate(id,x,y,w,h,pre="") | |
; Initializes the graph, sets its options, | |
; and draws it at the specified location. |
This file contains hidden or 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
/* | |
Example for using the Velleman K8055 USB experiment board. | |
https://en.wikipedia.org/wiki/Velleman | |
I wanted to use the analog inputs for monitoring purposes. | |
But I could not find a program who could fill my needs: | |
just writing the values to a file. | |
*/ | |
#NoEnv | |
SetWorkingDir, %A_ScriptDir% |
This file contains hidden or 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
/* | |
Example for using the Velleman K8055 USB experiment board. | |
https://en.wikipedia.org/wiki/Velleman | |
Using AHK for controlling the board is amazingly simple. | |
(It is the first time I used dll calls.) | |
Even AHK newbys can use it and experiment. | |
Tested on WindowsXP and Window7 32bit. | |
The library won't load on Windows7 64bit. | |
I don't know why. Anyone? | |
*/ |