I hereby claim:
- I am inigoalonso on github.
- I am inigoalonso (https://keybase.io/inigoalonso) on keybase.
- I have a public key whose fingerprint is 81FE 0747 6970 26E0 18DB 5687 33CB 408A 0926 166A
To claim this, I am signing this object:
| Accelerator | |
| LEBT | |
| Destination MEBT -> MEBT | |
| Destination DTL2 -> DTL2 | |
| Destination DTL4 -> DTL4 | |
| Destination Spokes -> Spokes | |
| Destination MBL -> MBL | |
| Destination Dump -> Dump | |
| Destination Target -> Target | |
| Envelope Probe Beam -> LEBT - Probe Beam |
| ESS | |
| Shutdown | |
| Only RF -> RF Power | |
| Turn on Ion Source -> Source | |
| Accelerator Shutdown | |
| RF Power | |
| Source | |
| Start Neutron Source -> Start Up | |
| Start Studies -> Studies on Dumps | |
| Start Up |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| apt-get -y update | |
| apt-get -y upgrade | |
| apt-get -y install build-essential default-jre libreadline-dev | |
| mkdir -p /home/vagrant/Apps/epics | |
| ln -s /home/vagrant/Apps/epics /usr/local/ | |
| echo "Installing EPICS" | |
| wget --quiet http://www.aps.anl.gov/epics/download/base/baseR3.14.12.5.tar.gz |
| const int ledPin = 11; | |
| const int photoPin = A0; | |
| int ledState = LOW; | |
| int oldState = LOW; | |
| String input = ""; // This will capture the serial input commands | |
| void setup() { | |
| pinMode(ledPin, OUTPUT); |
| #!/bin/bash | |
| # All code from: http://www.smolloy.com/2015/12/epics-serial-communication-with-arduino/ | |
| # Create a new project | |
| echo "Creating new project" | |
| mkdir ~/Apps/epics/helloWorldIOC | |
| cd ~/Apps/epics/helloWorldIOC | |
| makeBaseApp.pl -t ioc helloWorldIOC | |
| echo | makeBaseApp.pl -i -t ioc helloWorldIOC |
| #!/bin/bash | |
| # All code from: http://www.smolloy.com/2015/12/epics-ioc-on-a-raspberry-pi/ | |
| # Download the necessary source files | |
| echo "Downloading the necessary source files" | |
| mkdir Downloads | |
| cd ~/Downloads | |
| wget http://www.aps.anl.gov/epics/download/base/baseR3.14.12.5.tar.gz | |
| wget http://aps.anl.gov/epics/download/modules/asyn4-28.tar.gz |