Camke 教學01

Jufeng Wu | 18 January 2020

在ros中,是寫camke來進行程式的編譯,那如果不要用ros,要如何用cmake呢?

read more

Docker compose

Jufeng Wu | 05 January 2020

會使用docker之後,RUN的東西越加越多,這時候就是該使用docker compose來管這一些images了

read more

Docker in Windows

Jufeng Wu | 03 January 2020

因為偶爾會使用到windows的電腦,但是linux已經用得很習慣了,所以嘗試在winodws上裝上docker,這一篇就來寫遇到的問題吧!

read more

Ros2 error and solve

Jufeng Wu | 18 November 2019

這一篇基本上是用來紀錄ros2在寫的時候遇到的一些錯誤,以及這一些錯誤要如何解決

read more

Ros2 life cycle

Jufeng Wu | 12 November 2019

ROS2 跟ROS1最大的不同,大概就是增加了life cycle這一個功能

read more

C++ smart pointer

Jufeng Wu | 06 November 2019

在C++ 中,最討厭的大概就是忘記清掉記憶體空間,使得memory的使用越來越多,最後當機

read more

Ros2 component msg

Jufeng Wu | 04 November 2019

Ros2 在他的說明文件裡面,有提到component是Ros2改善的一個東西,所以就來玩玩看吧

read more

Ros2 python project

Jufeng Wu | 02 November 2019

今天要寫ros2的python的使用方式

read more

Ros2 and Ros1 bridge

Jufeng Wu | 25 October 2019

今天要寫的是ROS2和ROS1之間的bridge 也就是把ROS2的訊號跟ROS1互相對傳

read more

Docker container connect

Jufeng Wu | 23 October 2019

這次在docker中遇到了一個問題,要如何在其他台電腦用tcp ip和內部的containetr溝通

read more

Ros 2 service

Jufeng Wu | 12 October 2019

這次我們來討論ros2的service吧

read more

Ros 2 topic

Jufeng Wu | 06 October 2019

ros2 跟ros1一樣都有topic,topic主要就是發布message,然後只要有註冊的node都可以聽這一個message 在這一點上ros2 跟ros1是一樣的 然而,有幾個要注意的地方:

read more

Ros 2 常用指令

Jufeng Wu | 27 September 2019

來紀錄一下ROS2的常用指令和一些概念吧

read more

Ros 2 gazebo plugin

Jufeng Wu | 25 September 2019

ROS2 的Gazebo plugin 跟 ROS1很像,然而有幾個地方還是不一樣

read more

Ros 2 launch file

Jufeng Wu | 20 September 2019

ROS2 的使用上跟ROS1最大的不同大概就是launch file

read more

C++ linux shared memory

Jufeng Wu | 29 August 2019

兩個執行檔如果要資料交換,除了使用tcp/ip之外,還可以使用shared memory的方式來進行資料交換

read more

C++ make file

Jufeng Wu | 26 August 2019

Makefile是使用gcc下指令的好幫手,畢竟當檔案連結越來越大的時候,一直下gcc大概會累死

read more

C++ rule of five

Jufeng Wu | 22 August 2019

什麼是rule of five(五法則)? 基本上就是幫你有寫出這五個其中一個東西的時候,剩下四個也最好複寫,雖然compiler會幫你作掉一些,但是有可能會出現不可預期的錯誤

read more

C++ memory leak 尋找方法-linux(Valgrind)

Jufeng Wu | 20 August 2019

相對於python,c#,java, 寫 c++和c最頭痛的大概就就是memory leak的問題

read more

Docker Container 介紹

Jufeng Wu | 07 August 2019

docker 的container 是跑在image之上,所以要使用docker必須要先產生container

read more

Docker Dockerfile 介紹

Jufeng Wu | 06 August 2019

上一篇有提到,docker 可以說由兩個東西組成,image 和 container 這一篇

read more

Docker Image 介紹

Jufeng Wu | 05 August 2019

docker 可以說由兩個東西組成,image 和 container 這一篇,我們就一起來討論image些常用的指令吧

read more

Ros上使用Google test

Jufeng Wu | 04 August 2019

在c++中,google test非常好用,所以當然要把他導入到Ros中!

read more