thingspeak/README.md

118 lines
5.7 KiB
Markdown
Raw Permalink Normal View History

2023-05-19 08:32:43 +02:00
# ThingSpeak
2011-03-27 22:53:05 +02:00
2023-05-19 08:32:43 +02:00
[ThingSpeak](https://thingspeak.com) ist eine OpenSource "Internet of Things" Anwendung und API, mit der Daten von "Dingen" per HTTP über das Internet (oder LAN) empfangen und gespeichert werden können. Mit ThingSpeak, kann man verschiedene Anwendungen erstellen, die Sensor-Daten speichern, Standortdaten verwenden oder ein "soziales Netzwerk der Dinge" mit Status Updates versorgt.
2023-05-24 18:59:30 +02:00
Die ThinkSpeak API empfängt und speichert numerische und alphanumerische Daten und erlaubt eine Datenverarbeitung (Zeitskalen, Duchschnittswerte, Median, Summen und runden). Jeder ThingSpeak Channel unterstützt bis zu 8 Datenfelder, Breitengrad, Längengrad, Höhe und Status. Zur Integration in weitere Anwendungen werden JSON, XML, und das CSV Format unterstützt.
2011-03-28 01:10:22 +02:00
2023-05-24 18:59:30 +02:00
Unterstützung für ThingSpeak gibt es bei der [ThingSpeak Community](http://community.thingspeak.com/), wo sich ein [Blog](http://community.thingspeak.com/), ein [Forum](http://community.thingspeak.com/forum/), [Dokumentation](https://thingspeak.com/docs), und [Tutorials](https://thingspeak.com/docs/tutorials/) finden.
2011-03-28 01:10:22 +02:00
2023-05-24 18:59:30 +02:00
## Besonderheiten zur Installation
2011-03-28 01:10:22 +02:00
2023-05-24 18:59:30 +02:00
Dieser Fork ist dazu gedacht, auf einem eigenen Debian 12 Server installiert zu werden.
Leider ist das [IOBridge-Repository](https://github.com/iobridge/thingspeak) veraltet und nur für Ubuntu 12.04 LTS geeignet.
Hauptproblem sind die veralteten Programme und Bibliotheken, auf die ThingSpeak aufbaut. Namentlich ist das libssl1.0-dev, aber auch Ruby 2 und Rails 4.
2011-03-28 03:29:24 +02:00
2023-05-24 18:59:30 +02:00
Aktuell ist die Basis die [Installation auf Ubuntu 16.04](https://www.cnx-software.com/2016/12/07/how-to-install-thingspeak-in-ubuntu-16-04/)
Darüber hinaus gibt es auch weitere Ressoucen, die bei einem OS-Upgrade hilfreich sind:
2011-03-27 22:54:00 +02:00
2023-05-24 18:59:30 +02:00
Neben einer [Erfolgsmeldung für Debian 10](https://github.com/iobridge/thingspeak/issues/70) gibt es ein aktuelleres [Repository von ELR](https://github.com/EllenLouiseRipley/thingspeak), aber auch eine ausführlichere [Schritt-für-Schritt-Anleitung für Ubuntu 14.04 LTS](https://gist.github.com/MarconiLab/f9f49cc473fa78ecfa72).
Aber auch ein paar Hilfestellungen zum Umgang mit veränderten Datenbanken ([hier](https://stackoverflow.com/questions/37315546/uninitialized-constant-activerecordconnectionadaptersmysql2adapternative-d) und [dort](https://stackoverflow.com/questions/37315546/uninitialized-constant-activerecordconnectionadaptersmysql2adapternative-d)) bzw. [ActiveAdmin](https://github.com/iobridge/thingspeak/issues/43)
2011-03-27 22:53:05 +02:00
2023-05-24 18:59:30 +02:00
Das Problem mit openssl1.0-dev kann vermutlich mit den Quellen des veralteten Debian 9 (Stretch) umgangen werden:
```
deb http://archive.debian.org/debian stretch main
deb http://archive.debian.org/debian-security stretch/updates main
```
Die genauen in Stretch verfügbaren Programmversionen findet man heraus mit: ```apt cache show ruby```.
Danach installiert man diese mit:
```
??? apt install rails=2:4.2.7.1-1+deb9u5 ruby-rails=2:4.2.7.1-1+deb9u5 ruby=1:2.3.3
??? apt install ruby: mit stretch-Quellen und Version (wegen Abhängigkeit aus Bullseye)
??? apt install rails: nur mit stretch-Quellen (wegen Dependency-Chaos)
```
### Vorbereitungen
1. Installiere Ruby 2, RubyGems, Rails 4, git, und eine Datenbank wie MySQL / MariaDB
2. Lade die Anwendung mit git herunter: git clone https://rlp.schule/gitea/c_meyer/thingspeak.git
3. Wechsele in das Verzeichnis thingspeak und installiere die entsprechenden gems: sudo bundle install
### Konfiguration
2011-03-27 22:54:00 +02:00
2011-03-27 22:53:05 +02:00
1. Set your database configuration file at config/database.yml (see config/database.yml.example for an example)
2023-05-24 18:59:30 +02:00
2. Erstelle die Datenbank: rake db:create
3. Erstelle die Datenbank-Tabellen: rake db:schema:load
2011-03-27 22:53:05 +02:00
2023-05-24 18:59:30 +02:00
### Starte die Anwendung
2011-03-27 22:54:00 +02:00
2023-05-24 18:59:30 +02:00
1. Starte den Server: rails server
2011-03-28 05:30:55 +02:00
2023-05-24 18:59:30 +02:00
Danach ist die Anwendung erreichbar unter ```http://localhost:3000/```
2011-03-27 22:53:05 +02:00
2023-05-24 18:59:30 +02:00
## Ändere den Text der Anwendung
2011-03-27 22:54:00 +02:00
2011-03-27 22:53:05 +02:00
Make changes to config/locales/en.yml
To avoid errors, please ensure your lines start with spaces, not tabs.
Set your application name using the 'application_name' key.
2023-05-19 08:32:43 +02:00
## (Optional) Email Setup
2011-03-27 22:54:00 +02:00
2011-03-27 22:53:05 +02:00
Set your domain, user_name, and password in config/environment.rb
2011-03-29 02:28:18 +02:00
2023-05-19 08:32:43 +02:00
## (Optional) Admin Setup
2014-10-28 22:50:22 +01:00
2023-05-19 08:32:43 +02:00
Open a rails console: ```rails console``` or ```RAILS_ENV=production rails console```, depending on your environment
Add the admin user: ```AdminUser.create!(email: 'YOUR_ADMIN_EMAIL@EXAMPLE.COM', password: 'YOUR_PASSWORD', password_confirmation: 'YOUR_PASSWORD')```
Exit the rails console: ```exit```
2014-10-28 22:50:22 +01:00
Login via the admin web interface at: "http://YOUR_DOMAIN.COM/admin"
2023-05-24 18:59:30 +02:00
# Installation auf Debian 11
Arbeiten als root:
```
command curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
command curl -sSL https://rvm.io/pkuczynski.asc | gpg2 --import -
curl -sSL https://get.rvm.io | bash -s stable --ruby
rvm install ruby-2.1.0
sudo apt update
sudo apt dist-upgrade
sudo apt purge ruby
sudo apt-get -y install build-essential mysql-server mysql-client libmysqlclient-dev libxml2-dev libxslt-dev git-core curl rubygems gnupg2
```
2023-05-19 08:32:43 +02:00
2023-05-24 18:59:30 +02:00
Arbeiten als user:
2023-05-19 08:32:43 +02:00
```
2023-05-24 18:59:30 +02:00
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm install ruby 2.1.0
git clone https://rlp.schule/gitea/c_meyer/thingspeak.git
2023-05-19 08:32:43 +02:00
cd thingspeak
2023-05-24 18:59:30 +02:00
gem install bundler
rvm --force rubygems 2.1.0
gem install bundler -v 1.17.3
gem install jquery-rails -v 3.0.4
gem install tzinfo -v 1.2.2
gem install 'activerecord-native_db_types_override'; für die Datenbank
bundle update mysql2
2023-05-19 08:32:43 +02:00
bundle install
2023-05-24 18:59:30 +02:00
2023-05-19 08:32:43 +02:00
cp config/database.yml.example config/database.yml
rake db:create
2023-05-24 18:59:30 +02:00
# mysql -u root -p
2023-05-19 08:32:43 +02:00
rake db:schema:load
2023-05-24 18:59:30 +02:00
rails server webrick
2023-05-19 08:32:43 +02:00
```
# Upgrading existing installations
```
git pull origin master
bundle install
rake db:migrate
```
2014-05-08 22:30:59 +02:00
If your server is active you can restart it by going to the active terminal, hitting Ctrl-c, and then typing:
2023-05-24 18:59:30 +02:00
```rails server```