-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from isuretpolos/develop
Dynamic adjustment of queue rates
- Loading branch information
Showing
15 changed files
with
148 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
![Logo](https://github.com/isuretpolos/AetherOnePi/raw/master/gui/src/assets/AetherOneLogo.png) | ||
|
||
# AetherOnePi | ||
|
||
Open Source Radionics for the Raspberry Pi | ||
## Open Source Radionics for the Raspberry Pi | ||
|
||
![Dashboard](https://raw.githubusercontent.com/isuretpolos/AetherOnePi/master/documentation/screenshots/analysis.jpg) | ||
|
||
## Java 1.8 runtime | ||
You need Java 1.8 as a runtime. Download it from [java.com](https://www.java.com/en/download/) and install it before you run the AetherOnePi application on your PC or Raspberry Pi. | ||
|
||
## Download | ||
Download [Version 1.0](https://github.com/isuretpolos/AetherOnePi/releases/tag/1.0) (Standalone Client) | ||
Download [Version 1.2.6](https://github.com/isuretpolos/AetherOnePi/releases/tag/1.2.6) (Standalone Client) | ||
|
||
or download the Beta which is build after each change on the [Action tab](https://github.com/isuretpolos/AetherOnePi/actions). Just click on the Build Element and in the upper right corner you will see a Artifact Download Button if the build was a success. | ||
|
||
|
@@ -28,6 +27,7 @@ Subscribe to my blog(s) and join the [community](https://vk.com/aetherone). | |
- 2021-07-12 Binaural sounds when rate resonates during broadcast, some minor adjustments and improvements | ||
- 2021-07-14 Clinical symptoms comparing with the entire result (only for Clarke Materia Medica) | ||
- 2021-12-04 **Webcam** for hotbits integrated in AetherOnePi application | ||
- 2022-02-14 Dynamic adjustments feature (checks for GV after broadcast of a rate and reinserts it into the queue if necessary) | ||
|
||
# Resources | ||
## Documentation | ||
|
@@ -37,8 +37,6 @@ Subscribe to my blog(s) and join the [community](https://vk.com/aetherone). | |
- [Radionics](https://radionics.home.blog) | ||
- [Isuret Polos](https://isuretpolos.wordpress.com) | ||
- [Open Source Radionics on Tumblr](https://aetheronepi.tumblr.com) | ||
## Literature | ||
- [My books](https://isuretpolos.wordpress.com/literature/) | ||
## Communities | ||
- [Open Source Radionics](https://vk.com/aetherone) | ||
- [Youtube](https://www.youtube.com/channel/UCFVTNpzycFUoF4h0CbRS92Q) | ||
|
@@ -50,6 +48,6 @@ As for the participation there are several possibilities. | |
|
||
If you are a developer with skills in Java 1.8, Maven 3, JSON and Javascript and you know modern collaboration techniques like git / branching / forking, then you are welcome to create a fork and make a pull request. After review your code contribution the core team decide if it will be integrated into the master branch. | ||
|
||
Another possibility is to open issues for bugs, new features, improvemenents and so on. Note that we don't tolerate features for magical and manipulative purposes, this includes all "whishing machines" features. The AetherOne project is a holistic approach as the original radionic from Dr. Abrams was, not a coward technology for manipulation. Such attempts leads to blocking. For new rate lists contribution a [separate repository](https://github.com/isuretpolos/radionics-rates) exists. | ||
Another possibility is to open issues for bugs, new features, improvements and so on. Note that we don't tolerate features for magical and manipulative purposes, this includes all "whishing machines" features. The AetherOne project is a holistic approach as the original radionic from Dr. Abrams was, not a coward technology for manipulation. Such attempts leads to blocking. For new rate lists contribution a [separate repository](https://github.com/isuretpolos/radionics-rates) exists. | ||
|
||
Also feel free to promote the project with your own documentation or blog posts. You can send me per [email]([email protected]) a link and after review the link will be inserted here on Github. |
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
92 changes: 92 additions & 0 deletions
92
...ava/de/isuret/polos/AetherOnePi/processing2/dialogs/ImprobabilityMeterVerticalDialog.java
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,92 @@ | ||
package de.isuret.polos.AetherOnePi.processing2.dialogs; | ||
|
||
import de.isuret.polos.AetherOnePi.processing2.hotbits.HotbitsHandler; | ||
import processing.core.PApplet; | ||
import processing.core.PFont; | ||
|
||
/** | ||
* Measurement of improbable events in realtime | ||
*/ | ||
public class ImprobabilityMeterVerticalDialog extends PApplet { | ||
|
||
public static int WIDTH = 400; | ||
public static int HEIGHT = 700; | ||
private HotbitsHandler hotbitsHandler; | ||
|
||
private int cumulativeValue = 0; | ||
private Integer lastRandomValue = null; | ||
|
||
public static void main(String[] args) { | ||
init(new HotbitsHandler(null)); | ||
} | ||
|
||
public static void init(HotbitsHandler hotbitsHandler) { | ||
|
||
ImprobabilityMeterVerticalDialog improbabilityMeterDialog = new ImprobabilityMeterVerticalDialog(hotbitsHandler); | ||
String[] args2 = {""}; | ||
PApplet.runSketch(args2, improbabilityMeterDialog); | ||
} | ||
|
||
public void exit() { | ||
surface.setVisible(false); | ||
dispose(); | ||
System.out.println("CLOSED"); | ||
System.exit(0); | ||
} | ||
|
||
public ImprobabilityMeterVerticalDialog(HotbitsHandler hotbitsHandler) { | ||
this.hotbitsHandler = hotbitsHandler; | ||
} | ||
|
||
public void settings() { | ||
size(WIDTH, HEIGHT); | ||
} | ||
|
||
public void setTitle(String title) { | ||
frame.setTitle(title); | ||
} | ||
|
||
public void setup() { | ||
background(0); | ||
surface.setTitle("Improbability Meter"); | ||
PFont font = createFont("Verdana", 20); | ||
textFont(font); | ||
} | ||
|
||
public void draw() { | ||
|
||
background(0); | ||
|
||
stroke(255); | ||
|
||
if (lastRandomValue != null && lastRandomValue == 10) { | ||
stroke(255,0,0); | ||
} | ||
|
||
text("points: " + cumulativeValue, 20, 30); | ||
|
||
for (int i = 0; i < 24; i++) { | ||
|
||
if (cumulativeValue > i * 10 ) { | ||
fill(255,i*10,0); | ||
rect(20, HEIGHT - (14 * i) - 60, WIDTH - 40, 10); | ||
} | ||
} | ||
|
||
throwDice(); | ||
|
||
if (cumulativeValue > 0) { | ||
cumulativeValue -= 1; | ||
} | ||
} | ||
|
||
public void throwDice() { | ||
|
||
if (lastRandomValue != null && lastRandomValue == 10) { | ||
|
||
cumulativeValue += lastRandomValue; | ||
} | ||
|
||
lastRandomValue = hotbitsHandler.getInteger(10); | ||
} | ||
} |
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
4 changes: 2 additions & 2 deletions
4
src/main/java/de/isuret/polos/AetherOnePi/sound/Binaural.java
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
java -jar AetherOnePi-1.2.5-jar-with-dependencies.jar | ||
java -jar AetherOnePi-1.2.6-jar-with-dependencies.jar | ||
rem pause |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
java -jar AetherOnePi-1.2.5.jar | ||
java -jar AetherOnePi-1.2.6.jar | ||
pause |