All Projects → pharo-iot → Pharothings

pharo-iot / Pharothings

Licence: mit
Live programming platform for IoT projects based on Pharo

Programming Languages

smalltalk
420 projects

Projects that are alternatives of or similar to Pharothings

Blynk Library
Blynk library for embedded hardware. Works with Arduino, ESP8266, Raspberry Pi, Intel Edison/Galileo, LinkIt ONE, Particle Core/Photon, Energia, ARM mbed, etc.
Stars: ✭ 3,305 (+4031.25%)
Mutual labels:  arduino, raspberry-pi, iot-platform
Sitewhere
SiteWhere is an industrial strength open-source application enablement platform for the Internet of Things (IoT). It provides a multi-tenant microservice-based infrastructure that includes device/asset management, data ingestion, big-data storage, and integration through a modern, scalable architecture. SiteWhere provides REST APIs for all system functionality. SiteWhere provides SDKs for many common device platforms including Android, iOS, Arduino, and any Java-capable platform such as Raspberry Pi rapidly accelerating the speed of innovation.
Stars: ✭ 788 (+885%)
Mutual labels:  arduino, raspberry-pi, iot-platform
Blynk Server
Blynk is an Internet of Things Platform aimed to simplify building mobile and web applications for the Internet of Things. Easily connect 400+ hardware models like Arduino, ESP8266, ESP32, Raspberry Pi and similar MCUs and drag-n-drop IOT mobile apps for iOS and Android in 5 minutes
Stars: ✭ 8 (-90%)
Mutual labels:  arduino, raspberry-pi, iot-platform
Automated Irrigation System
This is the software of an open source automated irrigation system. The complete setup including hardware can be found in the README.
Stars: ✭ 442 (+452.5%)
Mutual labels:  arduino, raspberry-pi
Peeqo Robot
The world's first robot to interact through GIFs...'nuf said
Stars: ✭ 365 (+356.25%)
Mutual labels:  arduino, raspberry-pi
Cylon
JavaScript framework for robotics, drones, and the Internet of Things (IoT)
Stars: ✭ 3,862 (+4727.5%)
Mutual labels:  arduino, raspberry-pi
Platformio Core
PlatformIO is a professional collaborative platform for embedded development 👽 A place where Developers and Teams have true Freedom! No more vendor lock-in!
Stars: ✭ 5,539 (+6823.75%)
Mutual labels:  arduino, ide
Platformio Atom Ide
PlatformIO IDE for Atom: The next generation integrated development environment for IoT
Stars: ✭ 475 (+493.75%)
Mutual labels:  arduino, ide
Xod
XOD IDE
Stars: ✭ 639 (+698.75%)
Mutual labels:  arduino, ide
Arduino Pro Ide
The Arduino IDE for advanced users and developers. Experimental alpha version.
Stars: ✭ 917 (+1046.25%)
Mutual labels:  arduino, ide
Signalbox
DCC Project
Stars: ✭ 17 (-78.75%)
Mutual labels:  arduino, raspberry-pi
Kotihome
Home automation system based on Arduino with sensors, Raspberry Pi, Node.js and React
Stars: ✭ 32 (-60%)
Mutual labels:  arduino, raspberry-pi
Freedomotic
Open IoT Framework
Stars: ✭ 354 (+342.5%)
Mutual labels:  arduino, iot-platform
Ssd1306
Driver for SSD1306, SSD1331, SSD1351, IL9163, ILI9341, ST7735, PCD8544, Nokia 5110 displays running on Arduino/ESP32/Linux (Rasperry) platforms
Stars: ✭ 303 (+278.75%)
Mutual labels:  arduino, raspberry-pi
Grovepi
GrovePi is an open source platform for connecting Grove Sensors to the Raspberry Pi.
Stars: ✭ 435 (+443.75%)
Mutual labels:  raspberry-pi, iot-platform
Iot 433mhz
🌐 IoT System to control 433 MHz RC power sockets, PIR, Door Sensors and much more.
Stars: ✭ 301 (+276.25%)
Mutual labels:  arduino, raspberry-pi
Guislice
GUIslice drag & drop embedded GUI in C for touchscreen TFT on Arduino, Raspberry Pi, ARM, ESP8266 / ESP32 / M5stack using Adafruit-GFX / TFT_eSPI / UTFT / SDL
Stars: ✭ 534 (+567.5%)
Mutual labels:  arduino, raspberry-pi
Pjon
PJON (Padded Jittering Operative Network) is an experimental, arduino-compatible, multi-master, multi-media network protocol.
Stars: ✭ 2,615 (+3168.75%)
Mutual labels:  arduino, raspberry-pi
Parse Embedded Sdks
The Embedded SDKs for the Parse Platform
Stars: ✭ 244 (+205%)
Mutual labels:  arduino, raspberry-pi
Jarvis Ai
It is an AI assistant which will automate your task like it can send emails also it can control lights using raspberry pi it can inform about weather and many more features
Stars: ✭ 52 (-35%)
Mutual labels:  arduino, raspberry-pi

PharoThings

Build Status

Live programming platform for IoT projects based on Pharo. It includes:

  • development tools to lively program, explore and debug remote boards (based on TelePharo)

  • board modeling library which simplifies board configuration

Now PharoThings is in beta stage together with documentation and videos. It will be improved constantly.

PharoThings Booklet

You can access the PharoThings Booklet with many examples and lessons from the official repository:

https://github.com/SquareBracketAssociates/Booklet-APharoThingsTutorial

Installation on Raspberry

  1. Download Pharo 6 and install the server part of PharoThings:
Metacello new
  baseline: 'PharoThings';
  repository: 'github://pharo-iot/PharoThings/src';
  load: #(RemoteDevServer Raspberry).

Then configure image to disable slow browser plugins (instead remote browser will be much slower):

ClySystemEnvironmentPlugin disableSlowPlugins

At the end save the image.

  1. Download ArmVM http://files.pharo.org/vm/pharo-spur32/linux/armv6/latest.zip. It will run Pharo on your board

  2. Copy saved image, changes, sources and ArmVM files into your Raspberry (files should be in same directory)

  3. Install WiringPi library in Raspberry

If you use the latest desktop version of Raspbian skip this step (WiringPi is included). The Light Raspbian version is required manual installation of WiringPi.

PharoThings uses WiringPi to control Raspberry pins. You need install it in your board. There is a convenient prebuilt package here. Follow install instructions or do it your own way.

You can test the WiringPi library in terminal. More information here

gpio readall

If you receive any error, you should update the WiringPi library:

cd /tmp
wget https://unicorn.drogon.net/wiringpi-2.46-1.deb
sudo dpkg -i wiringpi-2.46-1.deb
  1. Start Pharo on Raspberry with the server option:
pharo --headless Server.image  remotePharo --startServerOnPort=40423

It will listen for remote IDE connections on port 40423.

You can also prepare an image with a running server. Evaluate the following code in a playground and save the image:

TlpRemoteUIManager registerOnPort: 40423

In that case command line option --startServerOnPort is not needed. Just start Pharo with --no-quit option:

pharo --headless Server.image  --no-quit

Connecting to the board

Install the client part of PharoThings in the development (client) Pharo image:

Metacello new
  baseline: 'PharoThings';
  repository: 'github://pharo-iot/PharoThings/src';
  load: 'RemoteDev'

Connect to remote Pharo running on Raspberry using playground:

remotePharo := TlpRemoteIDE connectTo: (TCPAddress ip: #[193 51 236 167] port: 40423)

Notice that you should know the IP address of your Raspberry and port where running Pharo is waiting for remote IDE connection. In this example we used port 40423.

With the remotePharo instance you can open many different tools to develop and explore remote Pharo images. It is part of TelePharo project. Look at it for details.

Here we are using specialized Raspberry tools. They require auto refresh feature of inspector which is not enabled by default in Pharo 6. To activate it evaluate:

GTInspector enableStepRefresh

Inspecting the board

To inspect the board you need to know the concrete model of your Raspberry. Currently only model B is supported (with revision 1 and 2). But you can play with the following code on other boards too to get a feeling of this project. In that case pins could point to the wrong physical pins of your board. But tools will not break and will show the same working UI. Also you are always able to work with a board by using the low level library (like WiringPi) using the powerfull remote tools from TelePharo.

By the way, the implementation of a specific Raspberry model is very simple task (will be explained later). Feel free to implement support for it and contribute the code to the project.

So for your board model you need to choose an appropriate board class. For Raspberry it will be one of the RpiBoard subclasses. With the choosen class evaluate the following code to open an inspector:

remoteBoard := remotePharo evaluate: [ RpiBoardBRev1 current].
remoteBoard inspect

In this case we work with Raspberry model B revision 1.

The board inspector

The board inspector provides a scheme of pins similar to Raspberry Pi docs. But here it is a live tool which represents the current pins state.

In the picture the board is shown with two configured pins: gpio3 and gpio4 which are connected to physical button and led accordingly.

Digital pins are shown with green/red icons which represent high/low (1/0) values. In case of output pins you are able to click on the icon to toggle the value. Icons are updated according to pin value changes. If you click on physical button on your board the inspector will show the updated pin state by changing its icon color.

The evaluation pane in the bottom of the inspector provides bindings to gpio pins which you can script by #doIt/printIt commands. The example shows expressions which were used to configure a button and led.

For the led we first introduced named variable #led which we assigned to gpio4 pin instance:

led := gpio4

Then we configured the pin to be in digital output mode and set the value:

led beDigitalOutput.
led value: 1

It turned the led on.

For button we did the same but with digital input mode and extra resistor configuration:

button := gpio3.
button beDigitalInput. "button"
button enablePullDownResister.

You can notice that gpio variables are not just numbers/ids. PharoThings models boards with first class pins. They are real objects with behaviour. For example you can ask pin to toggle a value:

led toggleDigitalValue

Or ask a pin for current value if you want to check it:

led value.
button value

The following demo shows an inspector in live:

The device model

Pin scripting is cool and powerful feature but when you need real logic for your pins it is better to put it in objects.

PharoThings provides simple high level model of devices which you can use to implement complex interaction with your board.

For example with button device you can subscribe on #press/release events:

button := board installDevice: (PotButton named: 'button' fromPowerTo: gpio3).
button when: PotButtonReleased send: #toggleDigitalValue to: led.

It will connect the physical button to the led as a switch device which turns the led on and off on button click.

Devices incapsulate pin configuration logic. You don't need to configure an input pin manually when you create a button instance. Just install the device and the pin will work.

Notice that in example the physical button is connected to the gpio pin from power. That is why we use "named:fromPowerTo:" selector when we create a button instance. But a button can be connected another way, too. And in that case we would use the selector #named:fromGroundTo:. It is important to create an instance in the same way as it is connected in the real world because otherwise the button will not work. The reason will be explained later. This logic is hidden by PotButton class and users do not need to think about it.

Now to toggle the led we still use a script inside inspector. We can replace it with another device PotSwitch:

button unsubscribe: led. "disable previous script behaviour"
board installDevice: (PotSwitch named: 'led switch' for: gpio4 using: button).

(first line is required because instead toggle will be performed twice which will not change anything)

The board inspector provides extra tab to manage installed devices:

This tab shows the live state of devices. You can click on output pins to modify values.

From the context menu you can disable and remove devices. And you can also browse the implementation.

The following demo shows devices in live:

Implementing new devices

This topic will be described in details later. Now look at following demo as a simple example how develop and debug the live Raspberry remotely:

Persist board changes

If the board is configured you can save the remote image to persist board changes:

remotePharo saveImage

When you restart the image board pins will restore the saved state and installed devices will continue working.

For example, try to save the board with an led on. Then turn the led of and restart the Pharo. When Pharo will start, the led will be on (because the image was saved in that state).

All processes running in Pharo are also persistent. For example from the inspector you can connect the button pin to the led with a simple process:

[ [100 milliSeconds wait. 
	led value: (button value=1) asBit
		] repeat	
	 ] forkNamed: 'button process'.

It will turn the led on when the button is pressed.

Now if you save the image this process will continue working after Pharo restart.

All videos above show persistence in live.

I2C devices

To interract with I2C device the I2C connection must be opened:

i2cConnection := board connectToI2CDevice: addressInt

The argument is address/id of target device which is physically connected to the board. For Rassperry board the result is an instance of WiringPiI2CConnection. It provides i/o functions which are available in WiringPi library. For example:

i2cConnection read8BitsAt: 16rA1.
i2cConnection write8BitsAt: 16rF2 data: 16r01.	

In future the connection interface will be improved to be common for different kind of boards.

To implement model of I2C device the subclass of PotI2CDevice should be implemented. PotI2CDevice provides prepared i2cConnection. Subclases should implement device initialization in connection method. And they should provide required methods to communicate with target devices.

MCP9808

PotMCP9808Device implements model of temperature sensor MCP9808.

The code for initialization and sensors reading is copied from Python example.

The method #readTemperature returns the value in Celsius

To use:

  • board inspector sensor := board installDevice: PotMCP9808Device new.

  • playground. change the board model to your board sensor := (RpiBoard3B current) installDevice: PotMCP9808Device new.

BME280

PotBME280Device implements temperature/pressure/humidity sensor BME280.

The code for initialization and sensors reading is copied from Python example.

The method #readParameters returns three values: Celsius, hPa, humidity percents. In addition there is method #readTemperature to get single value.

To use:

  • board inspector sensor := board installDevice: PotBME280Device new.

  • board playground. change the board model to your board sensor := (RpiBoard3B current) installDevice: PotBME280Device new.

ADXL345

PotADXL345Device implements accelerometer ADXL345.

The code for initialization and sensors reading is copied from sunfolder example.

The method #readCoordinates returns three values array.

To use:

  • board inspector sensor := board installDevice: PotADXL345Device new.

  • playground. change the board model to your board sensor := (RpiBoard3B current) installDevice: PotADXL345Device new.

HCSR-04 ultrasonic

PotHCSR04Device implements HCSR-04 ultrasonic sensor

To use:

  • board inspector ultrasonic := board installDevice: (PotHCSR04Device triggerPin: 17 gpio echoPin: 27 gpio).

  • playground, change the board model to your board ultrasonic := (RpiBoard3B current) installDevice: (PotHCSR04Device triggerPin: 17 gpio echoPin: 27 gpio).

To read the distance use one of the method below.

readDistance. "It will return a number".
printDistance. "It will return a string".

Reboot the sensor:

rebootSensor.

HD44780 LCD chipset

PotLCDHD44780 implements LCD controller to all devices using this chipset.

PotLCD1602Device and PotLCD1602DeviceI2C implements LCD1602 display using GPIOs and I2C interface.

To use:

  • board inspector lcd := board installDevice: PotLCD1602Device new. or to I2C lcd := board installDevice: PotLCD1602DeviceI2C new.

  • playground. change the board model to your board lcd := (RpiBoard3B current) installDevice: PotLCD1602Device new. or to I2C lcd := (RpiBoard3B current) installDevice: PotLCD1602DeviceI2C new.

API:

showMessage: 'Hello
Pharo IoT'.
clearDisplay.
disableBlinkCursor.
disableDisplay.
disableUnderlineCursor. 
enableBlinkCursor.
enableDisplay.
enableUnderlineCursor.
moveCursorLeft. 
moveCursorRight.
returnHome.
setCursorAtRow:2.
setCursorAtRow:1 column:1.
setLeftAutoScroll.
setLeftToRight.
setRightAutoScroll.
setRightToLeft.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].