Skip to content

Commit bb582dd

Browse files
New post: ERF2019. (#28)
* Add myself to authors. * Add ERF post and slides. * Remove empty line. * Avoid vimeo and micro-ros.github.io//blog url checks. * Fix tense and update slides micro-ROS name. * Fix typo and update micro-ROS QR.
1 parent 09c9582 commit bb582dd

4 files changed

Lines changed: 38 additions & 1 deletion

File tree

_data/authors.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ anordman:
44
name: Arne Nordmann
55
twitter: norro58
66
web: http://arne-nordmann.de
7+
borjaouterelo:
8+
name: Borja Outerelo
9+
twitter: boouga
10+
github: BorjaOuterelo
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: micro-ROS at European Robotics Forum 2019
3+
author: borjaouterelo
4+
---
5+
6+
The [European Robotics Forum](https://www.eu-robotics.net/robotics_forum/), the most influential meeting of the robotics community in Europe, was held in Bucharest, Romania, in March 2019. Over 900 European robotics top experts attended the 10th edition of the conference.
7+
8+
OFERA consortium, taking advantage of the opportunity, arranged one of their face-to-face meetings the days before the ERF as some of the members will also be attending to the forum.
9+
10+
In the forum and as part of the TG Software & System Engineering Meeting, Ingo Luetkebohle from Bosch and Borja Outerelo from eProsima presented an overview of the micro-ROS project, exposing the challenges it faces and the involvement of the community via a demo and the ROS 2 Embedded SIG.
11+
12+
The micro-ROS community demo was presented, making use of a Kobuki, one of the project reference platforms, Olimex STM32 E407 and micro-ROS stack. This community use case was also present in the exibitions area, as part of the Bosch booth.
13+
14+
### Slides
15+
16+
<embed src="/download/OFERA-Presentation_ERF2019.pdf" type="application/pdf" width="100%" height="450px"/>
17+
18+
### Videos
19+
20+
Comming soon...
21+
22+
{% assign author = site.data.authors[page.author] %}
23+
<a rel="author"
24+
href="https://twitter.com/{{ author.twitter }}"
25+
title="{{ author.name }}">
26+
{{ author.name }}
27+
</a>
898 KB
Binary file not shown.

scripts/cibuild

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#!/usr/bin/env bash
22
set -e # halt script on error
33

4+
IGNORE_HREFS=$(ruby -e 'puts %w{
5+
vimeo.com
6+
micro-ros.github.io//blog
7+
}.map{|h| "/#{h}/"}.join(",")'
8+
)
9+
410
bundle exec jekyll build
5-
bundle exec htmlproofer --check_html --check-favicon --assume-extension --empty-alt-ignore --only-4xx ./_site
11+
bundle exec htmlproofer --check_html --check-favicon --assume-extension --empty-alt-ignore --only-4xx --url-ignore $IGNORE_HREFS $@ ./_site

0 commit comments

Comments
 (0)